File: .travis.yml

package info (click to toggle)
aiodns 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 116 kB
  • sloc: python: 269; sh: 5; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 314 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
language: python
sudo: false

matrix:
  include:
    - python: 3.5
    - python: 3.6
    - python: 3.7
      dist: xenial
      sudo: true
    - python: pypy3
branches:
  only:
    - master

before_install:
  - pip install -U setuptools pip wheel

install:
  - python -V
  - pip install .

script:
  - ./tests.py