We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a5d19 commit d34d83dCopy full SHA for d34d83d
2 files changed
.github/workflows/tests.yml
@@ -12,7 +12,7 @@ jobs:
12
- uses: actions/checkout@v4
13
14
- name: Run tests
15
- run: docker compose -f local.yml run --rm --remove-orphans app pytest -vv
+ run: make docker-test
16
17
analytics:
18
runs-on: ubuntu-latest
Makefile
@@ -39,6 +39,7 @@ attach: ## follow the logs of the service
39
docker compose -f local.yml logs -f
40
41
docker-test: ## run tests in Docker
42
+ mkdir -p assets/data assets/models assets/cookies
43
docker compose -f local.yml run --remove-orphans app py.test -vv -p no:cacheprovider
44
45
stop: ## stop all services defined in Docker Compose
0 commit comments