diff options
author | mattip <matti.picus@gmail.com> | 2019-08-27 16:38:08 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-08-27 19:16:22 +0300 |
commit | bfe255f6b649af36a5fc976caaab1b5c4e78ffe7 (patch) | |
tree | 13ba10b80c365865278c158f0942ee3ef4d08469 /.appveyor.yml | |
parent | d464d192ca996a107fc6dd5099f72227cf64a8ea (diff) | |
download | numpy-bfe255f6b649af36a5fc976caaab1b5c4e78ffe7.tar.gz |
BUILD: move all test dependencies to ./test_requirements.txt
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 079496d93..c8c1795c1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -34,13 +34,11 @@ environment: PYTHON_VERSION: 3.6 PYTHON_ARCH: 64 TEST_MODE: full - INSTALL_PICKLE5: 1 - PYTHON: C:\Python37-x64 PYTHON_VERSION: 3.7 PYTHON_ARCH: 64 TEST_MODE: full - INSTALL_PICKLE5: 1 init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" @@ -98,10 +96,8 @@ install: # Upgrade to the latest pip. - 'python -m pip install -U pip setuptools wheel' - - if [%INSTALL_PICKLE5%]==[1] echo pickle5 >> tools/ci/appveyor/requirements.txt - # Install the numpy test dependencies. - - 'pip install -U --timeout 5 --retries 2 -r tools/ci/appveyor/requirements.txt' + - 'pip install -U --timeout 5 --retries 2 -r test_requirements.txt' build_script: # Here, we add MinGW to the path to be able to link an OpenBLAS.dll |