diff --git a/.travis.yml b/.travis.yml index a70fd87..b8b818a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,7 @@ install: - pip install "tox<3" script: - - tox -vv + - tox -v after_success: case "$TOXENV" in diff --git a/appveyor.yml b/appveyor.yml index 591f17f..efd966e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -34,6 +34,7 @@ environment: - PYTHON: 'C:\Python38-x64' TOX_ENV: 'py38' PYTHON_APPDATA_DIR: 'C:\Users\appveyor\AppData\Roaming\Python\Python38' + # TODO: Also test with PyPy install: - 'set PATH=%PYTHON_APPDATA_DIR%\Scripts;%PYTHON%\Scripts;%PYTHON%;%PATH%' @@ -47,7 +48,7 @@ install: build: off test_script: - - 'build.cmd tox -e %TOX_ENV%-without_coverage-appveyor -vv' + - 'build.cmd tox -e %TOX_ENV%-without_coverage-appveyor -v' after_test: - 'build.cmd python setup.py bdist_wheel' diff --git a/tox.ini b/tox.ini index 224b539..b4dc1c0 100644 --- a/tox.ini +++ b/tox.ini @@ -25,15 +25,15 @@ commands = ; * if running with coverage, merge the coverage run results from both runs ; * for Python 2.6 use the unit2 script since -m unittest2 doesn't work ; (but when running with coverage, coverage run -m unittest2 works) - {py27,pypy}-without_coverage: {envbindir}/unit2 discover tests -t {toxinidir} + {py27,pypy}-without_coverage: {envbindir}/unit2 discover -v tests -t {toxinidir} {py27,pypy}-with_coverage: {envbindir}/coverage run --source=fuzzysearch -m unittest2 discover tests - {py35,py36,py37,py38,pypy3}-without_coverage: {envpython} -m unittest discover tests + {py35,py36,py37,py38,pypy3}-without_coverage: {envpython} -m unittest discover -v tests {py35,py36,py37,py38,pypy3}-with_coverage: {envbindir}/coverage run --source=fuzzysearch -m unittest discover tests with_coverage: mv .coverage .coverage.with_extensions {envpython} -c 'import os; [os.remove(os.path.join(d, fn)) for (d, dns, fns) in os.walk(os.path.join(r"{envsitepackagesdir}", "fuzzysearch")) for fn in fns if fn.endswith((".so", ".pyd"))]' - {py27,pypy}-without_coverage: {envbindir}/unit2 discover tests -t {toxinidir} + {py27,pypy}-without_coverage: {envbindir}/unit2 discover -v tests -t {toxinidir} {py27,pypy}-with_coverage: {envbindir}/coverage run --source=fuzzysearch -m unittest2 discover tests - {py35,py36,py37,py38,pypy3}-without_coverage: {envpython} -m unittest discover tests + {py35,py36,py37,py38,pypy3}-without_coverage: {envpython} -m unittest discover -v tests {py35,py36,py37,py38,pypy3}-with_coverage: {envbindir}/coverage run --source=fuzzysearch -m unittest discover tests with_coverage: mv .coverage .coverage.no_extensions with_coverage: {envbindir}/coverage combine