From 35fbec2e63d12ce6651ad3000e304cc5e4e8a43b Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Mon, 8 Jul 2013 22:51:03 +0600 Subject: [PATCH] allow passing arguments to tox e.g. "tox -- scrapy.tests.test_contrib_loader" runs test_contrib_loader for Python 2.6 and 2.7 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 157c0c217..b97460c73 100644 --- a/tox.ini +++ b/tox.ini @@ -9,4 +9,4 @@ envlist = py26, py27 [testenv] commands = pip install --use-mirrors -r .travis/requirements-latest.txt - trial scrapy + trial {posargs:scrapy}