Revision b97c72cc081dd9a399cc0136a2763c09af19fa44 authored by Kevin Sheppard on 03 August 2016, 16:28:53 UTC, committed by GitHub on 03 August 2016, 16:28:53 UTC
2 parent s 2e057b4 + d286593
Raw File
appveyor.yml
skip_tags: true
clone_depth: 50

os: Visual Studio 2015

environment:
  matrix:
    - PY_MAJOR_VER: 2
      PYTHON_ARCH: "x86"
    - PY_MAJOR_VER: 3
      PYTHON_ARCH: "x86_64"
    - PY_MAJOR_VER: 3
      PYTHON_ARCH: "x86"

platform:
    - x64

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 --quiet
  - conda install numpy cython nose pandas scipy patsy statsmodels matplotlib numba nbconvert nbformat nose pip pyyaml setuptools pyqt pyparsing --quiet
  - python setup.py install

test_script:
  - cd ..\..
  - nosetests arch
back to top