@@ -27,29 +27,29 @@ build:
27
27
- target=$(python tools/openblas_support.py)
28
28
- sudo cp -r "${target}"/64/lib/* /usr/lib
29
29
- sudo cp "${target}"/64/include/* /usr/include
30
- - pip install --upgrade pip
30
+ - python -m pip install --upgrade pip
31
31
32
32
# we will pay the ~13 minute cost of compiling Cython only when a new
33
33
# version is scraped in by pip; otherwise, use the cached
34
34
# wheel shippable places on Amazon S3 after we build it once
35
- - pip install -r test_requirements.txt --cache-dir=/root/.cache/pip/wheels/$SHIPPABLE_PYTHON_VERSION
35
+ - python -m pip install -r test_requirements.txt --cache-dir=/root/.cache/pip/wheels/$SHIPPABLE_PYTHON_VERSION
36
36
# install pytest-xdist to leverage a second core
37
37
# for unit tests
38
- - pip install pytest-xdist
38
+ - python -m pip install pytest-xdist
39
39
40
40
# build and test numpy
41
41
- export PATH=$PATH:$SHIPPABLE_REPO_DIR
42
42
# build first and adjust PATH so f2py is found in scripts dir
43
43
# use > 1 core for build sometimes slows down a fair bit,
44
44
# other times modestly speeds up, so avoid for now
45
- - pip install .
45
+ - python -m pip install .
46
46
- extra_directories=($SHIPPABLE_REPO_DIR/build/*scripts*)
47
47
- extra_path=$(printf "%s:" "${extra_directories[@]}")
48
48
- export PATH="${extra_path}${PATH}"
49
49
# check OpenBLAS version
50
50
- python tools/openblas_support.py --check_version 0.3.7
51
51
# run the test suite
52
- - python runtests.py --debug-info --show-build-log -- -rsx --junit-xml=$SHIPPABLE_REPO_DIR/shippable/testresults/tests.xml -n 2 --durations=10
52
+ - python runtests.py -n - -debug-info --show-build-log -- -rsx --junit-xml=$SHIPPABLE_REPO_DIR/shippable/testresults/tests.xml -n 2 --durations=10
53
53
54
54
cache : true
55
55
cache_dir_list :
0 commit comments