Add build-matrix support

This commit is contained in:
Babak Farrokhi 2018-08-05 16:33:50 +04:30
parent befeb64a41
commit 3e8e1e41d7
Signed by: farrokhi
GPG Key ID: 6B267AD85D632E9A

View File

@ -1,13 +1,17 @@
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "3.8-dev"
- "pypy3.5"
cache: pip
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"
- python: "3.8-dev"
- python: "pypy3"
dist: xenial
sudo: true