summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2017-12-03 15:15:42 +0100
committerJoris Roovers <jroovers@cisco.com>2017-12-03 17:53:43 +0100
commit033978d3f7cc9f08f2c372c05062392a2bc52f14 (patch)
treed205775cf387af709bbd7a6debb8e48a365d4911 /.travis.yml
parent4b0258763717394348dc0b1e516d9a1b9aa4f459 (diff)
Updating documentation prior to 0.9.0 release
Also updated .travis.yml file to run integration tests for certain environments. These tests still fail intermittently on travis. Hopefully enabling them will give us more insight into when and why.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml39
1 files changed, 31 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 5d06366..c121329 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,28 +9,51 @@ matrix:
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
- # Skip lint tests for python 3.6 (see https://github.com/PyCQA/pylint/issues/1072)
+ 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:
- - "./run_tests.sh"
- - "./run_tests.sh --build"
- - "./run_tests.sh --pep8"
- - "./run_tests.sh --git"
+ # 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
- - python: "2.7"
- os: osx
- script: "pip --version"
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"