forked from quattor/pan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (29 loc) · 1.06 KB
/
.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
matrix:
include:
- language: java
jdk:
- openjdk8
cache:
directories:
- $HOME/.m2
install:
- pip install -U --user Sphinx
script:
- mvn clean install
- language: python
python:
- 2.7
install:
- pip install -U prettytable colorama coverage coveralls
script:
- python panc/src/main/scripts/panlint/tests.py
- coverage run --source=panc/src/main/scripts/panlint --omit panc/src/main/scripts/panlint/tests.py panc/src/main/scripts/panlint/tests.py
- language: python
python:
- 3.6
install:
- pip install -U prettytable colorama coverage coveralls
script:
- python panc/src/main/scripts/panlint/tests.py
- coverage run --source=panc/src/main/scripts/panlint --omit panc/src/main/scripts/panlint/tests.py panc/src/main/scripts/panlint/tests.py
after_success: coveralls