diff options
author | Ian Henriksen <insertinterestingnamehere@gmail.com> | 2015-12-18 21:48:56 -0700 |
---|---|---|
committer | Ian Henriksen <insertinterestingnamehere@gmail.com> | 2015-12-19 13:33:07 -0700 |
commit | 73ba0080600ab81361df2e83b1d6db2a33ae8bcd (patch) | |
tree | 3773a2aacc6dde946aa440860dd87298f998fe77 | |
parent | e2bdaccba1a8691f9223b059b981b2890bb13b09 (diff) | |
download | numpy-73ba0080600ab81361df2e83b1d6db2a33ae8bcd.tar.gz |
TST: Add initial appveyor configuration with no optimized BLAS.
-rw-r--r-- | appveyor.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..026db34ea --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,28 @@ +skip_tags: true +clone_depth: 1 + +os: Visual Studio 2015 + +environment: + PYTHON_ARCH: "x86_64" + matrix: + - PY_MAJOR_VER: 2 + - PY_MAJOR_VER: 3 + +matrix: + #fast_finish: true + allow_failures: + - PY_MAJOR_VER: 2 + - PY_MAJOR_VER: 3 + +build_script: + - ps: Start-FileDownload "https://repo.continuum.io/miniconda/Miniconda$env:PY_MAJOR_VER-latest-Windows-$env:PYTHON_ARCH.exe" C:\Miniconda.exe; echo "Finished downloading miniconda" + - cmd: C:\Miniconda.exe /S /D=C:\Py + - SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH% + - conda config --set always_yes yes + - conda update conda + - conda install cython nose + - pip install . -vvv + +test_script: + - python runtests.py -v -n |