2020-07-10 18:16:42 +00:00
|
|
|
#!/bin/sh
|
|
|
|
export DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
|
|
|
diesel migration run
|
|
|
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
2020-09-18 14:37:46 +00:00
|
|
|
RUST_TEST_THREADS=1 RUST_BACKTRACE=1 cargo test -j8 --no-fail-fast -- --nocapture
|