Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ commands:
TESTS_TO_RUN=$(cat codecov_ats/tests_to_run.txt)
echo $TESTS_TO_RUN
echo $TESTS_TO_RUN | circleci tests run --command "xargs uv run --frozen pytest --cov \
-o junit_suite_name="${CIRCLE_JOB}" \
-o junit_suite_name="${CIRCLE_JOB}-${CIRCLE_NODE_INDEX}" \
-n auto \
-vv \
--cov \
Expand All @@ -197,14 +197,15 @@ commands:
cat codecov_ats/tests_to_run.txt | xargs uv run --frozen pytest \
--cov \
-vv \
-o junit_suite_name="${CIRCLE_JOB}" \
-o junit_suite_name="${CIRCLE_JOB}-${CIRCLE_NODE_INDEX}" \
-n auto \
--cov-append \
<<parameters.collect_args>>
- upload-tests
- codecov/upload:
flags: <<parameters.codecov_flags>>
plugins: pycoverage,compress-pycoverage
files: coverage.codecov.json
# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
jobs:
Expand Down