Codebase list gunicorn / c777d455-c344-4d8d-afad-192f732aad3d/main appveyor.yml
c777d455-c344-4d8d-afad-192f732aad3d/main

Tree @c777d455-c344-4d8d-afad-192f732aad3d/main (Download .tar.gz)

appveyor.yml @c777d455-c344-4d8d-afad-192f732aad3d/mainraw · history · blame

version: '{branch}.{build}'
environment:
  matrix:
    - TOXENV: lint
      PYTHON: "C:\\Python37-x64"
    - TOXENV: py35
      PYTHON: "C:\\Python35-x64"
    - TOXENV: py36
      PYTHON: "C:\\Python36-x64"
    - TOXENV: py37
      PYTHON: "C:\\Python37-x64"
    - TOXENV: py38
      PYTHON: "C:\\Python38-x64"
    - TOXENV: py39
      PYTHON: "C:\\Python39-x64"
matrix:
  allow_failures:
    - TOXENV: py35
    - TOXENV: py36
    - TOXENV: py37
    - TOXENV: py38
    - TOXENV: py39
init: SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
install:
  - pip install tox
build: off
test_script: tox
cache:
  # Not including the .tox directory since it takes longer to download/extract
  # the cache archive than for tox to clean install from the pip cache.
  - '%LOCALAPPDATA%\pip\Cache -> tox.ini'
notifications:
  - provider: Email
    on_build_success: false
    on_build_status_changed: false