-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
33 lines (32 loc) · 836 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
language: python
python:
- "3.6"
before_install:
- sudo apt-get install graphviz
install:
- pip install -r requirements.txt
stages:
- unittests
- linter
jobs:
include:
- stage: unittests
name: "Unit Tests"
script:
- cd src/lyra/unittests/
- PYTHONPATH="${PYTHONPATH}:../../"
- export PYTHONPATH
- python -m unittest test_SignLattice.py
- python -m unittest test_IntervalLattice.py
- python -m unittest test_UsageLattice.py
- python sign_tests.py
- python interval_tests.py
- python liveness_tests.py
- python usage_tests.py
- python assumption_tests.py
- python fulara_tests.py
- stage: linter
name: "PEP 8 Coding Style"
script:
- cd src/
- pycodestyle --filename=*.py .