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 da8d7ee commit 54dca40Copy full SHA for 54dca40
.github/workflows/pull-request-tests.yml
@@ -95,6 +95,10 @@ jobs:
95
run: |
96
cd backend
97
source .venv/bin/activate
98
+ # fake these folders so static asset serving doesn't fail
99
+ mkdir -p ../frontend/dist/assets
100
+ mkdir -p ../frontend/dist/img
101
+ mkdir -p ../frontend/dist/static
102
TEST=1 pytest
103
104
typescript:
e2e/Makefile
@@ -3,7 +3,7 @@
3
all: nim_scenes snapshots
4
5
nim_scenes:
6
- export PYTHONPATH="../backend:${PYTHONPATH}" DEBUG=1 python3 ./makescenes.py
+ PYTHONPATH="../backend:${PYTHONPATH}" DEBUG=1 python3 ./makescenes.py
7
8
snapshots:
9
mkdir -p ./tmp && \
@@ -16,4 +16,4 @@ snapshots:
16
rm -rf "$$tmpdir"
17
18
ls -l ./tmp/frameos
19
- python3 ./makesnapshots.py
+ DEBUG=1 python3 ./makesnapshots.py
0 commit comments