8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e5d1b commit b0aa4e4Copy full SHA for b0aa4e4
.travis.yml
@@ -20,7 +20,6 @@ env:
20
- SKLEARN_SKIP_NETWORK_TESTS=1
21
# Custom environment variables for the ARM wheel builder
22
- CIBW_BUILD_VERBOSITY=1
23
- - CIBW_TEST_REQUIRES="pytest pytest-xdist threadpoolctl"
24
- CIBW_TEST_COMMAND="bash {project}/build_tools/travis/test_wheels.sh"
25
- CIBW_ENVIRONMENT="CPU_COUNT=2
26
OMP_NUM_THREADS=2
build_tools/travis/test_wheels.sh
@@ -1,9 +1,11 @@
1
#!/bin/bash
2
3
set -e
4
+pip install --upgrade pip
5
+pip install pytest pytest-xdist
6
7
# Faster run of the source code tests
-pytest -n $CPU_COUNT --pyargs sklearn
8
+python -m pytest -n $CPU_COUNT --pyargs sklearn
9
10
# Test that there are no links to system libraries
11
python -m threadpoolctl -i sklearn
0 commit comments