Skip to content

Commit

Permalink
Tiny CI fix (#553)
Browse files Browse the repository at this point in the history
* maybe fix ci

* add space

* act if no .test_durations

* missing file is fine
  • Loading branch information
gpucce authored Jun 28, 2023
1 parent fb72f4d commit 197cf45
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,11 @@ jobs:
- name: Unit tests
run: |
source .env/bin/activate
touch .test_durations
cp .test_durations durations_1
mv .test_durations durations_2
if [[ -f .test_durations ]]
then
cp .test_durations durations_1
mv .test_durations durations_2
fi
python -m pytest \
-x -s -v \
--splitting-algorithm least_duration \
Expand Down

0 comments on commit 197cf45

Please sign in to comment.