From: Daniel Roy Greenfeld Date: Sun, 8 Apr 2018 22:23:51 +0000 (-0500) Subject: Corrected test invocation X-Git-Tag: 1.4.2~6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f4219ad6eea47a2726009dbf63d7dc2dcbbd6c84;p=cached-property.git Corrected test invocation --- diff --git a/.travis.yml b/.travis.yml index 41eb570..90bdb25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,4 @@ python: install: pip install -r requirements.txt # command to run tests, e.g. python setup.py test -script: py.test +script: python setup.py test diff --git a/tox.ini b/tox.ini index 2d69b26..be4b74c 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py27, py33, py34, py35, py36 [testenv] setenv = PYTHONPATH = {toxinidir}:{toxinidir}/cached-property -commands = py.test +commands = python setup.py test deps = pytest freezegun