.appveyor.yml 732 B

123456789101112131415161718192021222324252627282930
  1. clone_depth: 1
  2. image:
  3. - Visual Studio 2019
  4. environment:
  5. PYTHON: "C:\\Python37-x64"
  6. matrix:
  7. # Python 2.x builds do not work because implementation of os.readlink did not support Windows till 3.2
  8. - TOXENV: "py34"
  9. - TOXENV: "py35"
  10. - TOXENV: "py36"
  11. - TOXENV: "py37"
  12. matrix:
  13. fast_finish: true
  14. build: off
  15. install:
  16. - "%PYTHON%\\python.exe -m pip install --upgrade pip"
  17. - "%PYTHON%\\python.exe -m pip install --upgrade wheel>=0.30.0 setuptools>=36.6.0"
  18. - "%PYTHON%\\python.exe -m pip install -r appveyor-requirements.txt"
  19. test_script:
  20. - "%PYTHON%\\python.exe -m tox -vv -- --cov-report=xml"
  21. after_test:
  22. - "%PYTHON%\\python.exe -m codecov --required --file %APPVEYOR_BUILD_FOLDER%\\coverage.xml"