Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit 62c5c1f

Browse files
committed
added env vars to e2e job, added debug statements
1 parent 019de84 commit 62c5c1f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitlab-ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,16 @@ e2e cypress tests without docker-compose:
112112
services:
113113
- postgres:latest
114114
- redis:latest
115+
variables:
116+
SECRET_KEY: 'secret'
117+
DEBUG: 'True'
118+
DJANGO_EMAIL_HOST: 'mail'
119+
DJANGO_EMAIL_PORT: '1025'
120+
DJANGO_SETTINGS_MODULE: backend.settings.gitlab-ci
121+
GITHUB_KEY: 'github123'
122+
GITHUB_SECRET: 'github123'
123+
GOOGLE_OAUTH2_KEY: 'google123'
124+
GOOGLE_OAUTH2_SECRET: 'google123'
115125
before_script:
116126
- /start_asgi.sh &
117127
- sleep 10

backend/scripts/dev/start_asgi.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414

1515
ls
1616
pwd
17+
ls backend
1718
cd backend
1819
daphne backend.asgi:application --bind 0.0.0.0 --port 9000

0 commit comments

Comments
 (0)