appveyor.yml (554B)
1 environment: 2 3 matrix: 4 - PYTHON: "C:\\Python27" 5 6 - PYTHON: "C:\\Python34" 7 8 - PYTHON: "C:\\Python35" 9 10 - PYTHON: "C:\\Python36" 11 12 - PYTHON: "C:\\Python37" 13 14 init: 15 - "%PYTHON%/python --version" 16 17 install: 18 - "powershell appveyor\\install.ps1" 19 20 build: off 21 22 test_script: 23 - cd tests 24 - "%PYTHON%/Scripts/py.test --cov-report=xml --cov=pathlib2 ." 25 26 after_test: 27 - ps: | 28 $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH 29 Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh 30 bash codecov.sh -f "coverage.xml"