summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2016-02-29 22:19:39 +0100
committerJoris Roovers <jroovers@cisco.com>2016-02-29 22:31:36 +0100
commitbda5c6dd7bc7cfd87a8244a9e6fa6ee1dc6c2c52 (patch)
treeb5cc3a6b47531f09a52182af3de593b1df7d3cfa
parent56a721c8ffa4bff42907c9213583288548ae50e9 (diff)
Enabling integration tests and gitlint checks in TravisCI
gitlint-ignore: B5,B6
-rw-r--r--.travis.yml2
-rw-r--r--test-requirements.txt3
2 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index dfc6606..5bb856e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,6 +7,6 @@ python:
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
-script: "./run_tests.sh && ./run_tests.sh --pep8"
+script: "./run_tests.sh && ./run_tests.sh --integration && ./run_tests.sh --pep8 && gitlint"
after_success:
- coveralls \ No newline at end of file
diff --git a/test-requirements.txt b/test-requirements.txt
index 4595db8..cbb77f1 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -5,4 +5,5 @@ coverage==3.7.1
python-coveralls==2.5.0
radon==1.2.1
mock==1.3.0
-pytest==2.8.2 \ No newline at end of file
+pytest==2.8.2
+-e . \ No newline at end of file