Skip to content

Commit 7cc6eb3

Browse files
Obada HaddadAnne-Catherine L.
authored andcommitted
remove selenium traces; make celery do all the work instead of django
1 parent 1836663 commit 7cc6eb3

3 files changed

Lines changed: 1 addition & 8 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- run:
7878
name: "Tests: Run end-to-end (E2E) tests"
7979
command: |
80-
cd tests && CI="true" $HOME/.local/bin/uv run pytest test_auth.py test_account_creation.py test_competition.py test_submission.py
80+
cd tests && $HOME/.local/bin/uv run pytest test_auth.py test_account_creation.py test_competition.py test_submission.py
8181
no_output_timeout: 30m
8282

8383
# Example to run specific set of tests (for debugging individual tests from a batch of tests)

.env_circleci

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ WORKER_CONNECTION_TIMEOUT=100000000 # milliseconds
1414

1515
FLOWER_BASIC_AUTH=root:password-you-should-change
1616

17-
SELENIUM_HOSTNAME=selenium
18-
1917
DJANGO_SETTINGS_MODULE=settings.test
2018

2119
# Minio local storage example

src/settings/test.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
DEBUG = True
55

6-
CELERY_TASK_ALWAYS_EAGER = True
7-
86
# Don't use whitenoise -- so we don't get exceptions for missing files
97
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
108

@@ -20,7 +18,4 @@
2018
DEBUG_TOOLBAR_CONFIG = {
2119
"SHOW_TOOLBAR_CALLBACK": lambda request: False
2220
}
23-
24-
SELENIUM_HOSTNAME = os.environ.get("SELENIUM_HOSTNAME", "localhost")
25-
2621
IS_TESTING = True

0 commit comments

Comments
 (0)