Skip to content

Commit

Permalink
storing results
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-pettinga committed Jan 10, 2025
1 parent 05bf975 commit b3f1149
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
run_frontend_tests:
<<: *django_server_configuration

parallelism: 10
parallelism: 5

steps:
- attach_workspace:
Expand Down Expand Up @@ -193,6 +193,9 @@ jobs:
# save the frontend test videos
path: video-test-results

- store_test_results:
path: test-results/frontend

run_unit_tests:
<<: *django_server_configuration

Expand Down Expand Up @@ -221,7 +224,13 @@ jobs:
- run:
name: Run tests and save coverage report
command: |
pipenv run pytest tests/test_unit --cov=django_app --cov-branch --cov-report=json --junitxml=test-results/unit/results.xml --create-db
pipenv run pytest \
tests/test_unit \
--cov=django_app \
--cov-branch \
--cov-report=json \
--junitxml=test-results/unit/results.xml \
--create-db
- codecov/upload

Expand Down

0 comments on commit b3f1149

Please sign in to comment.