-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
58 lines (58 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
notifications:
email:
on_success: never
on_failure: always
matrix:
include:
- os: linux
language: python
python:
- "3.8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- g++-6
before_install:
- cd test
- mkdir target
- make all
- cd ..
install:
- pip install pylint
- pip install coveralls
- pip install .
after_success:
- coveralls
- os: osx
osx_image: xcode10.2
language: shell
before_install:
- cd test
- mkdir target
- make all
- cd ..
install:
- sudo python3 -m pip install pylint
- sudo python3 -m pip install coverage
- sudo python3 -m pip install nose
- sudo python3 -m pip install .
- os: windows
language: sh
before_install:
- cd test
- mkdir target
- ./Make-msvc.bat
- cd ..
- choco install python --version=3.8.3
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
install:
- pip install pylint
- pip install nose
- pip install coverage
- pip install .
script:
- pylint canaries
- nosetests