-
Notifications
You must be signed in to change notification settings - Fork 19
/
.travis.yml
43 lines (37 loc) · 1.4 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: python
cache: pip
notifications:
email:
recipients:
- martin.lim@rsa.rohde-schwarz.com
on_success: never # default: change
on_failure: always # default: always
python:
- "3.8"
os:
- linux
# - osx #Not working 19.04.23
# - windows #Windows does not support python
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
# - python -m unittest -v test.test_RSSD
- coverage run -m unittest -b -v test.test_RSSD
- coverage run -a -m unittest -b -v test.test_yaVISA
- coverage run -a -m unittest discover -b -v -p test_HW_DSO*
- coverage run -a -m unittest discover -b -v -p test_HW_NRQ*
- coverage run -a -m unittest discover -b -v -p test_HW_NRP*
- coverage run -a -m unittest discover -b -v -p test_HW_OTA*
- coverage run -a -m unittest discover -b -v -p test_HW_OSP*
- coverage run -a -m unittest discover -b -v -p test_HW_PNA*
- coverage run -a -m unittest discover -b -v -p test_HW_RCT*
- coverage run -a -m unittest discover -b -v -p test_HW_VNA*
- coverage run -a -m unittest discover -b -v -p test_HW_VSA*
- coverage run -a -m unittest discover -b -v -p test_HW_VSE*
- coverage run -a -m unittest discover -b -v -p test_HW_VSG*
- coverage run -a -m unittest discover -b -v -p test_HW_VST*
- coverage run -a -m unittest discover -b -v -p test_SW*
after_success:
- coveralls