-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (51 loc) · 1.55 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
language: python
# ===== Linux ======
dist: xenial
python:
- 3.6
- 3.7
- 3.8
matrix:
include:
# ======= OSX ========
- name: "Python 3.7 on macOS"
os: osx
osx_image: xcode10.2 # Python 3.7.5 running on macOS 10.14.3
language: shell
- name: "Python 3.8 on macOS"
os: osx
osx_image: xcode11.3 # Python 3.8.0 running on macOS 10.14.6
language: shell
# ====== WINDOWS =========
- name: "Python 3.6 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell
before_install:
- choco install python --version 3.6
- python -m pip install --upgrade pip
- pip install nose
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
- name: "Python 3.7 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell
before_install:
- choco install python --version 3.7
- python -m pip install --upgrade pip
- pip install nose
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
- name: "Python 3.8 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell
before_install:
- choco install python --version 3.8
- python -m pip install --upgrade pip
- pip install nose
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
install:
- pip install -r requirements.txt
- pip install coverage
- pip install coveralls
script:
- nosetests --with-coverage --cover-package=dame_flame
after_success:
- coveralls