https://github.com/manubot/manubot.git
Raw File
Tip revision: dae57036de250ca1ece852a4f5b3d7f946c25d50 authored by Daniel Himmelstein on 17 December 2018, 21:54:13 UTC
Prepare version 0.2.2 release
Tip revision: dae5703
.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.5
  - ps: $env:Path += ";C:\Program Files\Pandoc\"

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