We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61863c1 commit b8095e1Copy full SHA for b8095e1
appveyor.yml
@@ -1,11 +1,19 @@
1
-version: '{build}'
2
3
-install:
4
- - configure --dev
+################################################################################
+# We use Appveyor to run minimal smoke tests suites on Pythons 3.x
+# on Windows 64 bits
5
6
+environment:
7
+ matrix:
8
+ - PYTHON: "C:\\Python36-x64"
9
+# - PYTHON: "C:\\Python37-x64"
10
+# - PYTHON: "C:\\Python38-x64"
11
+# - PYTHON: "C:\\Python39-x64"
12
+
13
14
build: off
15
16
17
test_script:
- - set
- - venv/bin/activate
- - pytest -vvs tests
18
+ - python -c "import sys;print(sys.getdefaultencoding())"
19
+ - cmd: "set PYTHON_EXECUTABLE=%PYTHON%\\python.exe && configure --dev && venv\\Scripts\\pytest -vvs tests"
0 commit comments