Skip to content

Commit

Permalink
Try avoiding echo to prevent one big test filename
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGleave committed Oct 5, 2023
1 parent 3112ba1 commit 78c198b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ jobs:
source ~/venv/bin/activate
ALL_TESTFILES=$(circleci tests glob "tests/**/test*.py")
echo "All testfiles: ${ALL_TESTFILES}"
TESTFILES=$(echo $ALL_TESTFILES | circleci tests split --split-by=timings)
TESTFILES=$(circleci tests glob "tests/**/test*.py" | circleci tests split --split-by=timings)
echo "This shard testing: ${TESTFILES}"
pytest -n auto --junitxml=/tmp/test-reports/junit.xml -vv $TESTFILES
Expand Down

0 comments on commit 78c198b

Please sign in to comment.