19 lines
364 B
YAML
19 lines
364 B
YAML
language: python
|
|
sudo: false
|
|
install: "pip install -r requirements.txt"
|
|
script: nosetests dnstraceroute.py
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.3"
|
|
- python: "3.4"
|
|
- python: "3.5"
|
|
- python: "3.6"
|
|
- python: "3.7"
|
|
dist: xenial
|
|
sudo: true
|
|
- python: "3.8-dev"
|
|
dist: xenial
|
|
sudo: true
|
|
- python: "pypy3"
|