Skip to content

Commit b9514f2

Browse files
committed
Appveyor support
1 parent f2cabe3 commit b9514f2

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
environment:
2+
3+
matrix:
4+
- PYTHON: "C:\\Python36-x64"
5+
PYTHON_VERSION: "3.6"
6+
PYTHON_ARCH: "64"
7+
8+
- PYTHON: "C:\\Python37-x64"
9+
PYTHON_VERSION: "3.7"
10+
PYTHON_ARCH: "64"
11+
12+
13+
install:
14+
# Make sure pip is around
15+
- python -m ensurepip
16+
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
17+
18+
# Install the package locally
19+
#- pip install --upgrade pip setuptools
20+
- pip install pytest pytest-cov codecov
21+
- pip install -e src
22+
23+
build: false
24+
25+
test_script:
26+
- pytest -v --cov=hsd test
27+
28+
on_success:
29+
- codecov

0 commit comments

Comments
 (0)