forked from dictation-toolbox/Caster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (46 loc) · 1.37 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
language: python
# python:
# - "2.7"
# - "3.8"
jobs:
include:
- name: "Windows Python27"
os: windows
language: sh
python: "2.7"
cache: pip
before_install:
- choco install python2
- export PATH="/c/Python27:/c/Python27/Scripts:$PATH"
- python -m pip install --upgrade pip wheel
install:
- pip install -U -r requirements-dev.txt
- pip install -vvv --user -e .
script:
- python tests/testrunner.py && pylint -E _caster.py && pylint -E castervoice
- name: "Windows Python38"
os: windows
language: sh
python: "3.8"
cache: pip
before_install:
- choco install python --version 3.8.0
- python -m pip install --upgrade pip wheel
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
install:
- pip install -U -r requirements-dev.txt
- pip install -vvv --user -e .
script:
- python tests/testrunner.py && pylint -E _caster.py && pylint -E castervoice
- name: "macOS python38"
os: macos
language: sh
python: "3.8"
cache: pip
before_install:
- python -m pip install --upgrade pip wheel
install:
- pip install -U -r requirements-mac.txt
- pip install -vvv --user -e .
script:
- python tests/testrunner.py && pylint -E _caster.py && pylint -E castervoice