From 40efdf9719b8dfd291d96cf60aaa80592b71ba53 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Thu, 22 Nov 2012 22:27:15 -0800 Subject: Automatically add "nose" to deps when the selected test runner is nosetests --- tox/_quickstart.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tox/_quickstart.py') diff --git a/tox/_quickstart.py b/tox/_quickstart.py index 099fa3f..9d94c66 100644 --- a/tox/_quickstart.py +++ b/tox/_quickstart.py @@ -167,6 +167,8 @@ What command should be used to test your project -- examples: default_deps = ' ' if 'py.test' in d['commands']: default_deps = 'pytest' + if 'nosetests' in d['commands']: + default_deps = 'nose' print(''' What dependencies does your project have?''') -- cgit v1.2.1