forked from ronf/asyncssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (28 loc) · 813 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
environment:
matrix:
- PYTHON: "C:\\Python34"
ARCH: win32
- PYTHON: "C:\\Python34-x64"
ARCH: win64
- PYTHON: "C:\\Python35"
ARCH: win32
- PYTHON: "C:\\Python35-x64"
ARCH: win64
- PYTHON: "C:\\Python36"
ARCH: win32
- PYTHON: "C:\\Python36-x64"
ARCH: win64
- PYTHON: "C:\\Python37"
ARCH: win32
- PYTHON: "C:\\Python37-x64"
ARCH: win64
install:
- "cd %PYTHON%"
- "curl https://www.timeheart.net/appveyor/%ARCH%/libsodium-18.dll -O"
- "curl https://www.timeheart.net/appveyor/%ARCH%/libnettle-6.dll -O"
- "curl https://www.timeheart.net/appveyor/%ARCH%/libhogweed-4.dll -O"
- "cd %APPVEYOR_BUILD_FOLDER%"
- "%PYTHON%\\python.exe -m pip install tox"
build: off
test_script:
- "%PYTHON%\\python.exe -m tox -e py"