Skip to content

Commit 7a24eb6

Browse files
committed
Run full test suite
1 parent 8922dc9 commit 7a24eb6

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

tools/test_source.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ python -m pip install -r requirements/test_requirements.txt
1313
mkdir tmp_for_test
1414
cd tmp_for_test
1515

16-
# TODO(thomasjpfan): use `--pyargs sklearn`
17-
pytest --pyargs sklearn.tests.test_dummy
16+
pytest --pyargs sklearn

tools/test_wheels.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ python -c "import sklearn; sklearn.show_versions()"
2424

2525
if pip show -qq pytest-xdist; then
2626
XDIST_WORKERS=$(python -c "import joblib; print(joblib.cpu_count(only_physical_cores=True))")
27-
# TODO: use `--pyargs sklearn`
28-
pytest --pyargs sklearn.tests.test_dummy -n $XDIST_WORKERS
27+
pytest --pyargs sklearn -n $XDIST_WORKERS
2928
else
30-
# TODO: use `--pyargs sklearn`
31-
pytest --pyargs sklearn.tests.test_dummy
29+
pytest --pyargs sklearn
3230
fi

0 commit comments

Comments
 (0)