Skip to content

Commit 49e2990

Browse files
Merge pull request #204 from supertokens/ci/fix-integration-test-failure
ci: Fix integration test failure
2 parents 8fd9eb6 + df76c6f commit 49e2990

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/setupAndTestWithFrontendWithDjango2x.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ cd supertokens-website
5050
git checkout $2
5151
cd ../project/tests/frontendIntegration/django2x
5252
export PYTHONPATH="${PYTHONPATH}:/root/project"
53-
python manage.py runserver 8080 &
53+
python3 manage.py runserver 8080 &
5454
pid=$!
55-
python manage.py runserver 8082 &
55+
python3 manage.py runserver 8082 &
5656
pid2=$!
5757
cd ../../../../supertokens-website/test/server
5858
npm i -d

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"django": (
3232
[
3333
"django-cors-headers==3.11.0",
34-
"django==3",
34+
"django>=3",
3535
"django-stubs==1.9.0",
3636
"uvicorn==0.18.2",
3737
"python-dotenv==0.19.2",
@@ -40,7 +40,7 @@
4040
"django2x": (
4141
[
4242
"django-cors-headers==2.0",
43-
"django==2",
43+
"django>=2,<3",
4444
"django-stubs==1.9.0",
4545
"python-dotenv==0.19.2",
4646
]

0 commit comments

Comments
 (0)