From 51715d1b2e231fe3dc29f09fc03f13dc1dffde78 Mon Sep 17 00:00:00 2001 From: Timo Lesterhuis Date: Tue, 12 Mar 2019 06:50:37 +0100 Subject: [PATCH] removed tox, using setup.py install --- .travis.yml | 7 +++---- tox.ini | 14 -------------- 2 files changed, 3 insertions(+), 18 deletions(-) delete mode 100644 tox.ini diff --git a/.travis.yml b/.travis.yml index c585131..ec18e59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,12 +11,11 @@ matrix: - python: 3.7 dist: xenial sudo: true - + install: - pip install -r requirements_dev.txt - - pip install -r requirements.txt + - python setup.py install script: - - python -m pytest --cov=diagnostics - #- tox # TODO: can get tox to work + - python -m pytest --cov=diagnostics --cov-report html after_success: - coveralls diff --git a/tox.ini b/tox.ini deleted file mode 100644 index ce4245b..0000000 --- a/tox.ini +++ /dev/null @@ -1,14 +0,0 @@ -# tox (https://tox.readthedocs.io/) is a tool for running tests -# in multiple virtualenvs. This configuration file will run the -# test suite on all supported python versions. To use it, "pip install tox" -# and then run "tox" from this directory. - -[tox] -envlist = py27, py34, py35, py36 - -[testenv] -deps = - pytest-cov - pytest -commands = - python -m pytest --cov=diagnostics