Skip to content

Commit 301bcc9

Browse files
committed
Try to use Python3.7 on AppVeyor
1 parent 6bffdc6 commit 301bcc9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.appveyor.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
environment:
2+
matrix:
3+
- PYTHON: "C:\\Python37"
4+
15
install:
2-
- pip install --upgrade pip setuptools
3-
- pip install --upgrade --editable .[dev]
6+
- %PYTHON%\\python.exe -m pip install --upgrade pip setuptools
7+
- %PYTHON%\\python.exe -m pip install --upgrade --editable .[dev]
48
test_script:
5-
- pytest -vvv --exitfirst tests/ --cov-fail-under 100 --cov src --cov tests
9+
- %PYTHON%\\python.exe -m pytest -vvv --exitfirst tests/ --cov-fail-under 100 --cov src --cov tests

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[check-manifest]
22
ignore =
33
*.enc
4+
.appveyor.yml
45
.coveragerc
56
.isort.cfg
67
.markdownlint.json

0 commit comments

Comments
 (0)