Skip to content

Commit

Permalink
fix: test reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Nov 25, 2024
1 parent 0c7ddc7 commit e13607c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config_continue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
docker:
- image: python:<< parameters.python-version >>
environment:
MOCHA_FILE: ~/test_report/report_node-<< parameters.fdi-version >>.xml
MOCHA_FILE: /root/test_report/report_node-<< parameters.fdi-version >>.xml
parameters:
fdi-version:
type: string
Expand All @@ -217,7 +217,7 @@ jobs:
- run: make with-fastapi
- run: (cd .circleci && ./authReactFastApi.sh << parameters.fdi-version >>)
- store_test_results:
path: ~/test_report/report_node-<< parameters.fdi-version >>.xml
path: /root/test_report/report_node-<< parameters.fdi-version >>.xml
- store_artifacts:
path: ~/test_report/screenshots
destination: screenshots
Expand All @@ -229,7 +229,7 @@ jobs:
- image: python:<< parameters.python-version >>
resource_class: large
environment:
MOCHA_FILE: ~/test_report/report_node-<< parameters.fdi-version >>.xml
MOCHA_FILE: /root/test_report/report_node-<< parameters.fdi-version >>.xml
parameters:
fdi-version:
type: string
Expand All @@ -248,7 +248,7 @@ jobs:
- run: make with-flask
- run: (cd .circleci && ./authReactFlask.sh << parameters.fdi-version >>)
- store_test_results:
path: ~/test_report/report_node-<< parameters.fdi-version >>.xml
path: /root/test_report/report_node-<< parameters.fdi-version >>.xml
- store_artifacts:
path: ~/test_report/screenshots
destination: screenshots
Expand All @@ -260,7 +260,7 @@ jobs:
- image: python:<< parameters.python-version >>
resource_class: large
environment:
MOCHA_FILE: ~/test_report/report_node-<< parameters.fdi-version >>.xml
MOCHA_FILE: /root/test_report/report_node-<< parameters.fdi-version >>.xml
parameters:
fdi-version:
type: string
Expand All @@ -279,7 +279,7 @@ jobs:
- run: make with-django
- run: (cd .circleci && ./authReactDjango.sh << parameters.fdi-version >>)
- store_test_results:
path: ~/test_report/report_node-<< parameters.fdi-version >>.xml
path: /root/test_report/report_node-<< parameters.fdi-version >>.xml
- store_artifacts:
path: ~/test_report/screenshots
destination: screenshots
Expand Down

0 comments on commit e13607c

Please sign in to comment.