-
Notifications
You must be signed in to change notification settings - Fork 28
/
.travis.yml
58 lines (53 loc) · 1.22 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
language: python
jobs:
include:
- name: "Python 3.9 on Linux Bionic"
os: linux
dist: "bionic"
python: "3.9"
- name: "Python 3.8 on Linux Bionic"
os: linux
dist: "bionic"
python: "3.8"
- name: "Python 3.7 on Linux Bionic"
os: linux
dist: "bionic"
python: "3.7"
- name: "Python 3.6 on Linux Bionic"
os: linux
dist: "bionic"
python: "3.6"
- name: "Python 3.9 on OSX"
os: osx
osx_image: xcode11.4
language: generic
env: TOXENV=py39
- name: "Python 3.8 on OSX"
os: osx
osx_image: xcode11.4
language: generic
env: TOXENV=py38
- name: "Python 3.7 on OSX"
os: osx
osx_image: xcode11.4
language: generic
env: TOXENV=py37
- name: "Python 3.6 on OSX"
os: osx
osx_image: xcode11.4
language: generic
env: TOXENV=py36
before_install:
- chmod +x ./.travis/install.sh
install:
- "./.travis/install.sh"
notifications:
email:
recipients:
- apetrenko1991@gmail.com
on_success: change
on_failure: always
script:
- coverage run -m unittest cpp_faster_fifo/tests/test_faster_fifo.py
after_success:
- bash <(curl -s https://codecov.io/bash)