forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (21 loc) · 861 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
group: travis_latest
language: python
matrix:
include:
# We run Python 3.9 based tests towards the start. This is where additional tests are run so we give it more time
- python: 3.9
- python: 3.6
- python: 3.7
- python: 3.8
install:
- travis_retry sudo apt-get -y install python3-pip
- travis_retry pip install --upgrade pip
- travis_retry pip install --upgrade tox tox-travis codecov
script:
- tox -c tox-travis.ini
after_success:
- travis_retry codecov --flags codegenunittests --file codegen.xml
- travis_retry codecov --flags nifakeunittests --file nifakeunittest.xml
- travis_retry codecov --flags nidigitalunittests --file ninidigitalunittest.xml
- travis_retry codecov --flags nimodinstunittests --file nimodinstunittest.xml
- travis_retry codecov --flags nitclkunittests --file nitclkunittest.xml