We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950eda5 commit 8623aa1Copy full SHA for 8623aa1
appveyor.yml
@@ -0,0 +1,21 @@
1
+
2
+install:
3
+ - echo Installed Pythons
4
+ - dir c:\Python*
5
6
+ # install pypy using choco (redirect to a file and write to console in case
7
+ # choco install returns non-zero, because choco install python.pypy is too
8
+ # noisy)
9
+ # pypy is disabled until #1963 gets fixed
10
+ - choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
11
+ - set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
12
+ - echo PyPy installed
13
+ - pypy --version
14
15
+ - C:\Python35\python -m pip install tox
16
17
+build: false # Not a C# project, build stuff at the test step instead.
18
19
+test_script:
20
+ - C:\Python35\python -m tox
21
0 commit comments