From c84c4949bac0fbc5e4bb7bb2bad599f8a6e91711 Mon Sep 17 00:00:00 2001 From: Lennart Purucker Date: Mon, 16 Jun 2025 17:39:42 +0200 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55a4a354a..5ba52ea96 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: |