File: .appveyor.yml

package info (click to toggle)
python-aiosmtpd 1.2.2-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,704 kB
  • sloc: python: 3,838; makefile: 39
file content (25 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (2)
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
environment:
  PYTHONASYNCIODEBUG: "1"
  PLATFORM: "mswin"

  matrix:

    # For Python versions available on Appveyor, see
    # http://www.appveyor.com/docs/installed-software#python

    - PYTHON: "C:\\Python35"
      INTERP: "py35"
    - PYTHON: "C:\\Python35-x64"
      INTERP: "py35"
    - PYTHON: "C:\\Python36-x64"
      INTERP: "py36"

install:
  - "%PYTHON%\\python.exe -m pip install tox"
  - "%PYTHON%\\python.exe setup.py egg_info"
  - "%PYTHON%\\python.exe -m pip install -r aiosmtpd.egg-info/requires.txt"

build: off

test_script:
  - "%PYTHON%\\python.exe -m tox -e %INTERP%-nocov,%INTERP%-cov"