Skip to content
Closed
Changes from 1 commit
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
Next Next commit
Update test.yml
  • Loading branch information
LennartPurucker authored Jun 16, 2025
commit c84c4949bac0fbc5e4bb7bb2bad599f8a6e91711
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ jobs:
if [ ${{ matrix.code-cov }} ]; then codecov='--cov=openml --long --cov-report=xml'; fi
# Most of the time, running only the scikit-learn tests is sufficient
if [ ${{ matrix.sklearn-only }} = 'true' ]; then sklearn='-m sklearn'; fi
echo pytest -n 4 --durations=20 --dist load -sv $codecov $sklearn -o log_cli=true
pytest -n 4 --durations=20 --dist load -sv $codecov $sklearn -o log_cli=true
echo pytest -n 4 --durations=20 --dist loadfile -sv $codecov $sklearn -o log_cli=true
pytest -n 4 --durations=20 --dist loadfile -sv $codecov $sklearn -o log_cli=true
- name: Run tests on Windows
if: matrix.os == 'windows-latest'
run: | # we need a separate step because of the bash-specific if-statement in the previous one.
pytest -n 4 --durations=20 --dist load -sv --reruns 5 --reruns-delay 1
pytest -n 4 --durations=20 --dist loadfile -sv --reruns 5 --reruns-delay 1
- name: Check for files left behind by test
if: matrix.os != 'windows-latest' && always()
run: |
Expand Down
Loading