Skip to content

Commit 54dca40

Browse files
committed
ci tests
1 parent da8d7ee commit 54dca40

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/pull-request-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ jobs:
9595
run: |
9696
cd backend
9797
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
98102
TEST=1 pytest
99103
100104
typescript:

e2e/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
all: nim_scenes snapshots
44

55
nim_scenes:
6-
export PYTHONPATH="../backend:${PYTHONPATH}" DEBUG=1 python3 ./makescenes.py
6+
PYTHONPATH="../backend:${PYTHONPATH}" DEBUG=1 python3 ./makescenes.py
77

88
snapshots:
99
mkdir -p ./tmp && \
@@ -16,4 +16,4 @@ snapshots:
1616
rm -rf "$$tmpdir"
1717

1818
ls -l ./tmp/frameos
19-
python3 ./makesnapshots.py
19+
DEBUG=1 python3 ./makesnapshots.py

0 commit comments

Comments
 (0)