From 5aea145fb5410de3658a3708501c9ef7dd60b6fa Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Mon, 1 Dec 2014 11:14:16 -0600 Subject: [PATCH] Setup a nosetests config file for Travis builds. --- .travis.yml | 2 +- tests/travis-tests.cfg | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 tests/travis-tests.cfg diff --git a/.travis.yml b/.travis.yml index e909e8e..c8c9512 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ install: - pip install -r test_requirements.txt -r requirements.txt script: - - nosetests -v --with-coverage tests.test_api tests.test_utils + - nosetests -v --with-coverage -c tests/travis-tests.cfg after_success: if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then coveralls; fi diff --git a/tests/travis-tests.cfg b/tests/travis-tests.cfg new file mode 100644 index 0000000..20479d4 --- /dev/null +++ b/tests/travis-tests.cfg @@ -0,0 +1,2 @@ +[nosetests] +tests=tests.test_api,tests.test_utils -- 2.25.1