16 lines
353 B
Bash
16 lines
353 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
if [[ "$OSTYPE" != "linux-gnu" ]]; then
|
|
# The Linux test environment is run in a Docker container and
|
|
# it is not possible to copy the test configuration file (yet)
|
|
cp $CONFTEST_PATH $CONFTEST_NAME
|
|
fi
|
|
|
|
pytest --pyargs sklearn
|
|
|
|
# Test that there are no links to system libraries
|
|
python -m threadpoolctl -i sklearn
|