Skip to content

Commit

Permalink
uploading test results
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Oct 17, 2023
1 parent 505e085 commit 872546c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
name: "Run pytest"
command: |
mkdir test-results
args=("--log-cli-level=DEBUG" "--host" "localhost" "--junitxml=./test-results/junit.xml")
args=("--log-cli-level=DEBUG" "--host" "localhost" "--junitxml=test-results/junit.xml")
if [ << parameters.cluster >> = true ]; then
args+=("--cluster" "--port=8529" "--port=8539" "--port=8549")
else
Expand All @@ -77,9 +77,9 @@ jobs:
echo "Running py.test with args: ${args[@]}"
py.test "${args[@]}"
- store_test_results:
path: ./test-results/junit.xml
path: test-results
- store_artifacts:
path: ./test-results
path: test-results

workflows:
python-3.8-community-single-3.10:
Expand Down

0 comments on commit 872546c

Please sign in to comment.