From e64a672050921770207bf7274e5bb0e80421b57b Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 13 Dec 2018 19:03:01 -0500 Subject: [PATCH] Update testing --- .travis.yml | 11 ++++++----- tox.ini | 6 ++---- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index cc3e6c1..103f6f3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,13 @@ language: python dist: xenial python: - 3.7 -before_install: -- pip install nose coverage codecov -- pip install -r requires/testing.txt install: -- pip install -e . -script: nosetests --with-coverage +- pip install -r requires/development.txt +script: +- nosetests --with-coverage +- python setup.py build_sphinx +- python setup.py check +- flake8 after_success: - codecov sudo: false diff --git a/tox.ini b/tox.ini index 50d52a0..14e942f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,8 @@ [tox] envlist = py37 -indexserver = - default = https://pypi.python.org/simple toxworkdir = build/tox skip_missing_interpreters = True [testenv] -deps = -rrequires/testing.txt -commands = nosetests [] +deps = -r requires/testing.txt +commands = nosetests