diff options
author | Jon Bernard <jbernard@tuxion.com> | 2014-07-11 14:27:39 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2014-07-11 14:27:39 -0400 |
commit | 00fb884829278638f7961cc63c747610445d29c1 (patch) | |
tree | 204b4d7cc5054b2180a6f0b1c050dddaee4f632f /tox.ini | |
parent | 2b5b9e69cd58bd7bc8dbec05210c60531d51c875 (diff) | |
download | dotfiles-00fb884829278638f7961cc63c747610445d29c1.tar.gz dotfiles-00fb884829278638f7961cc63c747610445d29c1.tar.bz2 dotfiles-00fb884829278638f7961cc63c747610445d29c1.zip |
Add positional arguments to tox.ini
This allows you to pass additional flags to pytest.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,3 +1,3 @@ [testenv] -deps=pytest -commands=py.test +deps = pytest +commands = py.test {posargs} |