Skip to content

Commit c16783c

Browse files
committed
Stop using tox in AppVeyor
To build and test x64 wheels on Windows
1 parent 97c05c2 commit c16783c

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

appveyor.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,37 @@ cache:
44
environment:
55
PYPI_PASSWD:
66
secure: pp1j5lAB9NN8ZDasgY+oxoGrNw0+4gGzbNZmHVwJkCzUyrNBP5ZIuCrwjmx4q6ifg7RMiE3bVt9MljFCJh3XpsvVOAcx+AGKsHSjtXd40HM=
7+
8+
matrix:
9+
- PYTHON: "C:\\Python26"
10+
- PYTHON: "C:\\Python26-x64"
11+
- PYTHON: "C:\\Python27"
12+
- PYTHON: "C:\\Python27-x64"
13+
- PYTHON: "C:\\Python33"
14+
- PYTHON: "C:\\Python33-x64"
15+
- PYTHON: "C:\\Python34"
16+
- PYTHON: "C:\\Python34-x64"
17+
- PYTHON: "C:\\Python35"
18+
- PYTHON: "C:\\Python35-x64"
19+
720
init:
821
- ps: "ls C:/Python*"
922

1023
install:
11-
- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
12-
- SET PATH=C:\Python35;C:\Python35\scripts;C:\tools\pypy\pypy;%PATH%
24+
- SET PATH=%PYTHON%;%PYTHON%\scripts;%PATH%
1325
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
1426
- pip install -r dev-requirements.txt
1527

1628
build: off
1729

1830
test_script:
19-
- tox
31+
- python setup.py test
2032

2133
after_test:
2234
- pip install codecov
2335
- codecov
2436
- del bencoder.c
25-
- tox -c tox-wheels.ini
37+
- python setup.py bdist_wheel
2638
- ps: "ls wheelhouse/*"
2739

2840
deploy_script:

0 commit comments

Comments
 (0)