Skip to content

Commit de791ee

Browse files
Add appveyor CI config
1 parent 3625dec commit de791ee

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
environment:
2+
matrix:
3+
- PY: C:\Python27\python.exe
4+
- PY: C:\Python27-x64\python.exe
5+
6+
- PY: C:\Python35\python.exe
7+
- PY: C:\Python35-x64\python.exe
8+
9+
- PY: C:\Python36\python.exe
10+
- PY: C:\Python36-x64\python.exe
11+
12+
- PY: C:\Python37\python.exe
13+
- PY: C:\Python37-x64\python.exe
14+
15+
build: off
16+
17+
install:
18+
- cmd: |
19+
%PY% -m pip install -U pip setuptools six wheel
20+
%PY% -m pip install -U -e .
21+
%PY% -m pip install -U -r test-requirements.txt
22+
rem %PY% -m pip install -U tox
23+
24+
test_script:
25+
- cmd: |
26+
%PY% -m pytest -vv --doctest-modules nodely test --cov nodely --cov test --cov-report term-missing --cov-fail-under 100
27+
rem %PY% -m tox -r -v
28+
29+
- cmd: |
30+
%PY% -m pip install zetup[all]
31+
%PY% -m zetup install
32+
rem %PY% -m zetup pytest
33+
%PY% -m zetup sdist
34+
rem %PY% -m zetup tox

0 commit comments

Comments
 (0)