We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2cabe3 commit b9514f2Copy full SHA for b9514f2
1 file changed
.appveyor.yml
@@ -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
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