File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ if [ ! -s codecov_ats/tests_to_run.txt ]; then
50
50
echo " No tests to run, collecting from default tests"
51
51
PYTEST_ARGS=" ${COLLECT_ARGS} ${DEFAULT_TESTS} "
52
52
echo " Using args: ${PYTEST_ARGS} "
53
- TESTS_TO_RUN=$( PYTEST_ARGS=${PYTEST_ARGS} ./.circleci /collect.sh)
53
+ TESTS_TO_RUN=$( PYTEST_ARGS=${PYTEST_ARGS} ./.github/actions/run-ats /collect.sh)
54
54
echo " ${TESTS_TO_RUN} " > codecov_ats/tests_to_run.txt
55
55
run_count=1
56
56
echo " Added ${TESTS_TO_RUN} as fallback. New run count: $run_count "
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ TESTS_TO_RUN=$( uv run --frozen pytest --collect-only ${PYTEST_ARGS} -q --disable-warnings --no-summary --no-header)
3
+ TESTS_TO_RUN=$( echo " ${TESTS_TO_RUN} " | head -n -2)
4
+ echo $TESTS_TO_RUN
You can’t perform that action at this time.
0 commit comments