forked from userzimmermann/python-moretools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
39 lines (31 loc) · 1.04 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
environment:
matrix:
- PY: C:\Python27\python.exe
- PY: C:\Python27-x64\python.exe
- PY: C:\Python35\python.exe
- PY: C:\Python35-x64\python.exe
- PY: C:\Python36\python.exe
- PY: C:\Python36-x64\python.exe
- PY: C:\Python37\python.exe
- PY: C:\Python37-x64\python.exe
build: off
install:
- cmd: |
%PY% -m pip install -U pip setuptools six wheel
%PY% -m pip install -U -e .
- cmd: |
cd test && %PY% -m pip uninstall --yes moretools && cd ..
%PY% -m pip install -e .
%PY% -m pip install -U -r test-requirements.txt
rem %PY% -m pip install -U tox
test_script:
- cmd: |
%PY% -m pytest -vv --doctest-modules moretools test --cov moretools --cov test --cov-report term-missing
rem %PY% -m tox -r -v
- cmd: |
%PY% -m pip uninstall --yes moretools
%PY% -m pip install zetup[all]
%PY% -m zetup install
rem %PY% -m zetup pytest
%PY% -m zetup sdist
rem %PY% -m zetup tox