File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -26,33 +26,33 @@ tasks:
2626 format-python :
2727 desc : " Format python code"
2828 cmds :
29- - docker exec assetsubuntucom-app-1 yarn format-python
29+ - docker compose run --rm --no-deps --entrypoint "" app yarn format-python
3030
3131 lint :
3232 desc : " Run code linters"
3333 cmds :
34- - docker exec assetsubuntucom-app-1 yarn lint
34+ - docker compose run --rm --no-deps --entrypoint "" app yarn lint
3535
3636 test-python :
3737 desc : " Run tests"
3838 cmds :
39- - docker exec assetsubuntucom-app-1 yarn test-python
39+ - docker compose run --rm --no-deps --entrypoint "" app yarn test-python
4040
4141 test-e2e :
42- desc : " Run end-to-end tests"
42+ desc : " Run playwright e2e tests. This requires the app server to be running, so make sure to run `task` first. "
4343 cmds :
44- - docker exec assetsubuntucom-app-1 yarn playwright install
44+ - docker exec assetsubuntucom-app-1 yarn playwright install --with-deps
4545 - docker exec assetsubuntucom-app-1 yarn test-e2e
4646
4747 build :
4848 desc : " Build the project"
4949 cmds :
50- - docker exec assetsubuntucom-app-1 yarn build
50+ - docker compose run --rm --no-deps --entrypoint "" app yarn build
5151
5252 watch :
5353 desc : " Watch the project"
5454 cmds :
55- - docker exec assetsubuntucom-app-1 yarn watch
55+ - docker compose run --rm --no-deps --entrypoint "" app yarn watch
5656
5757 test :
5858 desc : " Run all tests"
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Pillow==10.4.0
99psycopg2-binary == 2.9.9
1010python-keystoneclient == 5.4.0
1111python-swiftclient == 4.6.0
12+ gunicorn < 22.0.0
1213requests == 2.32.3
1314scour == 0.38.2
1415sh == 2.0.7
You can’t perform that action at this time.
0 commit comments