360140d064
* Adapting code to new Fang tables structure and refactoring to make it more generic (Not finished) * Refactoring of the blocking module * Finishing blocking module, starting to modify tests * Worker tests done, Queue tests left * Maybe all tests done ?? * Makefile clippy * Examples fixed * asynk feature Co-authored-by: Ayrat Badykov <ayratin555@gmail.com>
17 lines
568 B
Makefile
17 lines
568 B
Makefile
db:
|
|
docker run --rm -d --name postgres -p 5432:5432 \
|
|
-e POSTGRES_DB=fang \
|
|
-e POSTGRES_USER=postgres \
|
|
-e POSTGRES_PASSWORD=postgres \
|
|
postgres:latest
|
|
clippy:
|
|
cargo clippy --all-features
|
|
diesel:
|
|
DATABASE_URL=postgres://postgres:postgres@localhost/fang diesel migration run
|
|
stop:
|
|
docker kill postgres
|
|
tests:
|
|
DATABASE_URL=postgres://postgres:postgres@localhost/fang cargo test --all-features -- --color always --nocapture
|
|
|
|
ignored:
|
|
DATABASE_URL=postgres://postgres:postgres@localhost/fang cargo test --all-features -- --color always --nocapture --ignored
|