summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2016-04-15 00:02:41 +0200
committerJoris Roovers <jroovers@cisco.com>2016-04-15 00:51:33 +0200
commite52dc57290f842972f60a20b26a6e162788c967b (patch)
tree5eabc661e09d092dd1fa315a99adcc0721846075 /.travis.yml
parenta9ccb6d575f35835641f620bc4cb713bfb925b4a (diff)
Various minor test and doc improvements
- ./run_tests.sh --git now runs gitlint against itself - Updated CHANGELOG.md to reflect 0.7.0dev changes - Use of os.path.realpath to support unit and integration tests on OS X On OS X, Click will resolve '/tmp' to '/private/tmp' (as /tmp is a symlink). The tests were updated to reflect this. - Attempt to run tests on both linux and OS X on TravisCI - Multiple minor updates to documentation
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5bb856e..6b60569 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,6 @@
+os:
+ - linux
+ - osx
language: python
python:
- "2.7"
@@ -7,6 +10,6 @@ python:
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
-script: "./run_tests.sh && ./run_tests.sh --integration && ./run_tests.sh --pep8 && gitlint"
+script: "./run_tests.sh && ./run_tests.sh --integration && ./run_tests.sh --pep8 && ./run_tests.sh --git"
after_success:
- coveralls \ No newline at end of file