File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments