tests: Pass additional tox args to pytest

This allows to run specific tests e.g. via `tox -e py3
tests/test_servefile.py::test_serve_relative_directory`.
This commit is contained in:
MasterofJOKers 2019-02-24 16:00:38 +01:00
parent 6e27ecfe8c
commit e5f9b39025
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@ envlist = py27,py36
deps =
pytest
requests
commands = pytest --tb=short
commands = pytest --tb=short {posargs}