Skip to content

Commit e2a19a5

Browse files
author
Obada Haddad
committed
circle-ci changes
1 parent 523a6c7 commit e2a19a5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,20 @@ jobs:
4242
command: |
4343
docker pull codalab/codalab-legacy:py37
4444
docker pull codalab/codalab-legacy:py3
45+
vergilgxw/autotable:v2
4546
4647
# TODO: Putting E2E tests earlier to make playwright testing faster. Will remove after the PR is merged
4748
- run:
4849
name: "Tests: Run end-to-end (E2E) tests"
4950
command: |
5051
cd playwrightPython && $HOME/.local/bin/uv run pytest test_auth.py test_account_creation.py test_competition.py test_submission.py
5152
no_output_timeout: 30m
53+
- run:
54+
name: "Get compute worker and site worker logs"
55+
command: |
56+
mkdir dockerLogs
57+
docker compose logs site_worker > dockerLogs/ite_worker.log
58+
docker compose logs compute_worker > dockerLogs/compute_worker.log
5259
5360
- run:
5461
name: "Tests: Run unit/integration tests (excluding e2e)"
@@ -74,7 +81,7 @@ jobs:
7481
- store_artifacts:
7582
path: playwrightPython/test-results
7683
- store_artifacts:
77-
path: artifacts/
84+
path: dockerLogs/
7885

7986
workflows:
8087
version: 2

0 commit comments

Comments
 (0)