Skip to content

Commit b7624ef

Browse files
committed
revert change
1 parent ad89be4 commit b7624ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ jobs:
101101
run: |
102102
if [ ${{ matrix.code-cov }} ]; then codecov='--cov=openml --long --cov-report=xml'; fi
103103
# Most of the time, running only the scikit-learn tests is sufficient
104-
if [ ${{ matrix.sklearn-only }} = 'true' ]; then marks='-m "not production and sklearn"'; else marks='-m "not production"'; fi
104+
if [ ${{ matrix.sklearn-only }} = 'true' ]; then marks='-m sklearn'; else marks=''; fi
105105
echo pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true $marks
106106
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true $marks
107107
- name: Run tests on Ubuntu Production
108108
if: matrix.os == 'ubuntu-latest'
109109
run: |
110110
if [ ${{ matrix.code-cov }} ]; then codecov='--cov=openml --long --cov-report=xml'; fi
111111
# Most of the time, running only the scikit-learn tests is sufficient
112-
if [ ${{ matrix.sklearn-only }} = 'true' ]; then marks='-m "production and sklearn"'; else marks='-m production'; fi
112+
if [ ${{ matrix.sklearn-only }} = 'true' ]; then marks='-m "sklearn"'; else marks=''; fi
113113
echo pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true $marks
114114
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true $marks
115115
- name: Run tests on Windows

0 commit comments

Comments
 (0)