Raw File
.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

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

before_test:
  - "%CMD_IN_ENV% pip install pytest"
  - choco install pandoc --version 2.7.2
  - ps: $env:Path += ";C:\Program Files\Pandoc\"

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