From 69d4409c79901b3d2fef2c7f51c2dfdc5d5a2fce Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Sun, 9 Oct 2016 13:38:20 -0700 Subject: [PATCH] Switching from nose to pytest --- .travis.yml | 2 +- requirements-dev.txt | 2 +- tableprint.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5972811..054733b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,6 @@ install: - travis_retry pip install -r requirements-dev.txt - travis_retry python setup.py install script: - - py.test + - coverage run --source descent -m py.test after_success: - coveralls diff --git a/requirements-dev.txt b/requirements-dev.txt index 72e5e86..123d281 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -r requirements.txt coveralls pytest -nose +coverage diff --git a/tableprint.py b/tableprint.py index 8343bf6..b907453 100644 --- a/tableprint.py +++ b/tableprint.py @@ -20,7 +20,7 @@ import numpy as np __all__ = ('table', 'header', 'row', 'hr', 'top', 'bottom', 'banner', 'dataframe', 'humantime', 'styles') -__version__ = '0.5.3' +__version__ = '0.5.4' # set up table styles LineStyle = namedtuple('LineStyle', ('begin', 'hline', 'sep', 'end'))