Skip to content

Commit 04b8c02

Browse files
committed
fix: server output dir
1 parent cdeb3d1 commit 04b8c02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/auth-react-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
121121
cd tests/auth-react/django3x
122122
123-
uvicorn mysite.asgi:application --port 8083 &> AUTH_REACT__LOG_DIR/django.log &
123+
uvicorn mysite.asgi:application --port 8083 &> $AUTH_REACT__LOG_DIR/django.log &
124124
125125
- name: Start Server (fastapi)
126126
if: matrix.framework == 'fastapi'
@@ -130,7 +130,7 @@ jobs:
130130
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
131131
cd tests/auth-react/fastapi-server
132132
133-
uvicorn app:app --host 0.0.0.0 --port 8083 &> AUTH_REACT__LOG_DIR/fastapi.log &
133+
uvicorn app:app --host 0.0.0.0 --port 8083 &> $AUTH_REACT__LOG_DIR/fastapi.log &
134134
135135
- name: Start Server (flask)
136136
if: matrix.framework == 'flask'
@@ -140,7 +140,7 @@ jobs:
140140
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
141141
cd tests/auth-react/flask-server
142142
143-
python3 app.py --port 8083 &> AUTH_REACT__LOG_DIR/flask.log &
143+
python3 app.py --port 8083 &> $AUTH_REACT__LOG_DIR/flask.log &
144144
145145
- uses: supertokens/auth-react-testing-action@main
146146
with:

0 commit comments

Comments
 (0)