mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
7 lines
182 B
Bash
7 lines
182 B
Bash
|
# Run tests
|
||
|
|
||
|
docker run -d --name sl-test-db -e POSTGRES_PASSWORD=test -e POSTGRES_USER=test -e POSTGRES_DB=test -p 15432:5432 postgres:13
|
||
|
|
||
|
poetry run pytest
|
||
|
|
||
|
docker rm -f sl-test-db
|