File: appveyor.yml

package info (click to toggle)
python-asyncssh 1.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,256 kB
  • sloc: python: 25,030; makefile: 10
file content (32 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
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
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

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"