https://github.com/astropy/astropy
Raw File
Tip revision: 6cb6edc89b80fe417f65286167dc2db61a885ebc authored by Brigitta Sipocz on 06 February 2018, 00:38:20 UTC
Preparing release v2.0.4
Tip revision: 6cb6edc
appveyor.yml
# AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows

environment:

    global:
        PYTHON: "C:\\conda"
        MINICONDA_VERSION: "latest"
        CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd"
        PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succeed. If a mix
                          # of 32 bit and 64 bit builds are needed, move this
                          # to the matrix section.
        CONDA_DEPENDENCIES: "Cython scipy h5py beautifulsoup4 jinja2 pyyaml matplotlib scikit-image pytz"
        PIP_DEPENDENCIES: "objgraph"

    matrix:

        - PYTHON_VERSION: "2.7"
          NUMPY_VERSION: "stable"
        - PYTHON_VERSION: "3.6"
          NUMPY_VERSION: "stable"
          ASTROPY_USE_SYSTEM_PYTEST: 1

matrix:
    fast_finish: true

platform:
    -x64

os: Visual Studio 2015 Update 2

install:
    - "git clone git://github.com/astropy/ci-helpers.git"
    - "powershell ci-helpers/appveyor/install-miniconda.ps1"
    - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
    - "activate test"

# Not a .NET project, we build Astropy in the install step instead
build: false

test_script:
    - "%CMD_IN_ENV% python setup.py test"

back to top