85
85
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
86
86
cd tests/frontendIntegration/django2x
87
87
88
- gunicorn mysite.wsgi --bind 0.0.0.0:8080 &
89
- gunicorn mysite.wsgi --bind 0.0.0.0:8082 &
88
+ gunicorn mysite.wsgi --bind 0.0.0.0:8080 &> app-server.log &
89
+ gunicorn mysite.wsgi --bind 0.0.0.0:8082 &> app-server-cross-domain.log &
90
90
91
91
- name : Install dependencies and start servers (django3x)
92
92
if : matrix.framework == 'django3x'
98
98
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
99
99
cd tests/frontendIntegration/django3x
100
100
101
- uvicorn mysite.asgi:application --port 8080 &
102
- uvicorn mysite.asgi:application --port 8082 &
101
+ uvicorn mysite.asgi:application --port 8080 &> app-server.log &
102
+ uvicorn mysite.asgi:application --port 8082 &> app-server-cross-domain.log &
103
103
104
104
- name : Install dependencies and start servers (drf_sync)
105
105
if : matrix.framework == 'drf_sync'
@@ -111,8 +111,8 @@ jobs:
111
111
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
112
112
cd tests/frontendIntegration/drf_sync
113
113
114
- gunicorn mysite.wsgi --bind 0.0.0.0:8080 &
115
- gunicorn mysite.wsgi --bind 0.0.0.0:8082 &
114
+ gunicorn mysite.wsgi --bind 0.0.0.0:8080 &> app-server.log &
115
+ gunicorn mysite.wsgi --bind 0.0.0.0:8082 &> app-server-cross-domain.log &
116
116
117
117
- name : Install dependencies and start servers (drf_async)
118
118
if : matrix.framework == 'drf_async'
@@ -124,8 +124,8 @@ jobs:
124
124
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
125
125
cd tests/frontendIntegration/drf_async
126
126
127
- uvicorn mysite.asgi:application --port 8080 &
128
- uvicorn mysite.asgi:application --port 8082 &
127
+ uvicorn mysite.asgi:application --port 8080 &> app-server.log &
128
+ uvicorn mysite.asgi:application --port 8082 &> app-server-cross-domain.log &
129
129
130
130
- name : Install dependencies and start servers (fastapi)
131
131
if : matrix.framework == 'fastapi'
@@ -137,8 +137,8 @@ jobs:
137
137
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
138
138
cd tests/frontendIntegration/fastapi-server
139
139
140
- uvicorn app:app --host 0.0.0.0 --port 8080 &
141
- uvicorn app:app --host 0.0.0.0 --port 8082 &
140
+ uvicorn app:app --host 0.0.0.0 --port 8080 &> app-server.log &
141
+ uvicorn app:app --host 0.0.0.0 --port 8082 &> app-server-cross-domain.log &
142
142
143
143
- name : Install dependencies and start servers (flask)
144
144
if : matrix.framework == 'flask'
@@ -150,8 +150,8 @@ jobs:
150
150
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
151
151
cd tests/frontendIntegration/flask-server
152
152
153
- python3 app.py --port 8080 &
154
- python3 app.py --port 8082 &
153
+ python3 app.py --port 8080 &> app-server.log &
154
+ python3 app.py --port 8082 &> app-server-cross-domain.log &
155
155
156
156
- name : Install dependencies and start servers (flask-nest-asyncio)
157
157
if : matrix.framework == 'flask-nest-asyncio'
@@ -164,8 +164,8 @@ jobs:
164
164
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
165
165
cd tests/frontendIntegration/flask-server
166
166
167
- python3 app.py --port 8080 &
168
- python3 app.py --port 8082 &
167
+ python3 app.py --port 8080 &> app-server.log &
168
+ python3 app.py --port 8082 &> app-server-cross-domain.log &
169
169
170
170
- uses : supertokens/website-testing-action@main
171
171
with :
0 commit comments