forked from pygraphviz/pygraphviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (40 loc) · 778 Bytes
/
.travis.yml
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
33
34
35
36
37
38
39
40
41
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "pypy"
addons:
apt:
packages:
- graphviz
matrix:
include:
- os: linux
python: 3.7
dist: xenial
sudo: true
- os: osx
language: generic
before_install: brew install graphviz
allow_failures:
- os: osx
before_install:
# create new empty venv
- virtualenv -p python ~/venv
- source ~/venv/bin/activate
install:
# install required packages
- pip install --upgrade pip
- pip install -r requirements/test.txt
# install pygraphviz
- printenv PWD
- pip install -e .
# show what's installed
- python --version
- pip list
script:
- nosetests --with-coverage --cover-package=pygraphviz
- python setup.py bdist_wheel
after_success:
- coveralls