forked from datamininggroup/pfa
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (35 loc) · 733 Bytes
/
.travis.yml
File metadata and controls
41 lines (35 loc) · 733 Bytes
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
#
# Python 3 Titus travis.yml config file
#
# YAML Validator: http://lint.travis-ci.org/
#
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
cache:
directories:
- $HOME/cached
before_install:
- cd $HOME/cached
- |
if [ ! -f pfa-tests.json ]
then
wget http://github.com/datamininggroup/pfa/releases/download/0.8.1/pfa-tests.json
fi
- head pfa-tests.json
- cd $HOME/build/animator/pfa
# command to install dependencies
install:
- pip install numpy
- pip install titus2
# command to run tests
script:
- python conformance-tests/runTestTitus.py $HOME/cached/pfa-tests.json
# Push the results back to codecov
# after_success:
# - codecov
notifications:
email: false