forked from jorisroovers/gitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (62 loc) · 1.85 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
59
60
61
62
language: python
matrix:
allow_failures:
- os: osx
include:
- python: "2.6"
os: linux
- python: "2.7"
os: linux
- python: "3.3"
os: linux
script:
# Skip integration tests in Travis for Python 3.3, need to look into this
# Error example: https://travis-ci.org/jorisroovers/gitlint/jobs/310861373
- "./run_tests.sh"
- "./run_tests.sh --build"
- "./run_tests.sh --pep8"
- "./run_tests.sh --lint"
- "./run_tests.sh --git"
- python: "3.4"
os: linux
script:
# Skip integration tests in Travis for Python 3.4, need to look into this
# Error example: https://travis-ci.org/jorisroovers/gitlint/jobs/310861374
- "./run_tests.sh"
- "./run_tests.sh --build"
- "./run_tests.sh --pep8"
- "./run_tests.sh --lint"
- "./run_tests.sh --git"
- python: "3.5"
os: linux
script:
# Skip integration tests in Travis for Python 3.5, need to look into this
# Error example: https://travis-ci.org/jorisroovers/gitlint/jobs/310861375
- "./run_tests.sh"
- "./run_tests.sh --build"
- "./run_tests.sh --pep8"
- "./run_tests.sh --lint"
- "./run_tests.sh --git"
- python: "3.6"
os: linux
script:
# Skip lint tests for python 3.6 (see https://github.com/PyCQA/pylint/issues/1072)
- "./run_tests.sh"
- "./run_tests.sh --integration"
- "./run_tests.sh --build"
- "./run_tests.sh --pep8"
- "./run_tests.sh --git"
- python: "pypy"
os: linux
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
script:
- "./run_tests.sh"
- "./run_tests.sh --integration"
- "./run_tests.sh --build"
- "./run_tests.sh --pep8"
- "./run_tests.sh --lint"
- "./run_tests.sh --git"
after_success:
- coveralls