https://github.com/dhimmel/hetio
Raw File
Tip revision: 74ffd2c96edf6e861b71ba9a2d623b87b0ce6e4c authored by Daniel Himmelstein on 10 December 2019, 16:09:23 UTC
retire python 3.4, add python 3.8 (#48)
Tip revision: 74ffd2c
.appveyor.yml
environment:

  image: Visual Studio 2017

  matrix:
    - PYTHON: "C:\\Python36"
      PYTHON_VERSION: "3.6.x"
      PYTHON_ARCH: "32"
    - PYTHON: "C:\\Python36-x64"
      PYTHON_VERSION: "3.6.x"
      PYTHON_ARCH: "64"
    - PYTHON: "C:\\Python37-x64"
      PYTHON_VERSION: "3.7.x"
      PYTHON_ARCH: "64"

build: off

cache:
  - '%LOCALAPPDATA%\pip\Cache -> .appveyor.yml, setup.py'

install:
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  - "python -m pip install --upgrade pip"
  - "%CMD_IN_ENV% pip install .[test]"

test_script:
  - "%CMD_IN_ENV% pytest"
back to top