Don't use 'shallow_clone' in appveyor.yml, it causes .git/ missing. Also remove an old caching option.
18 lines
359 B
YAML
18 lines
359 B
YAML
version: 1.0.{build}
|
|
|
|
environment:
|
|
matrix:
|
|
- Python: 35-x64
|
|
- Python: 27
|
|
|
|
build_script:
|
|
- PATH %CD%\here\bin;C:\mingw\bin;C:\python%Python%;C:\python%Python%\scripts;%PATH%
|
|
- pip install pyflakes pep8 coverage coveralls nose
|
|
|
|
test_script:
|
|
- pyflakes .
|
|
- pep8 .
|
|
- nosetests
|
|
- coverage report
|
|
- if not "%COVERALLS_REPO_TOKEN%"=="" coveralls
|