diff options
| author | Konrad Delong <konryd@gmail.com> | 2010-07-27 14:36:13 +0200 |
|---|---|---|
| committer | Konrad Delong <konryd@gmail.com> | 2010-07-27 14:36:13 +0200 |
| commit | c9ade502b46aae261ee25c078d2e8ce73fc1c062 (patch) | |
| tree | ce135e0b302c64f06df7dff3785808f20888ced3 /src/distutils2/tests/test_test.py | |
| parent | 3977647d4b49e89820a62bf5a4395901ec5e84d4 (diff) | |
| download | disutils2-c9ade502b46aae261ee25c078d2e8ce73fc1c062.tar.gz | |
broken test_suite option passing
Diffstat (limited to 'src/distutils2/tests/test_test.py')
| -rw-r--r-- | src/distutils2/tests/test_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/distutils2/tests/test_test.py b/src/distutils2/tests/test_test.py index a92db43..4328d8b 100644 --- a/src/distutils2/tests/test_test.py +++ b/src/distutils2/tests/test_test.py @@ -19,6 +19,7 @@ from distutils2.core import setup setup(name='somedist', version='0.1', py_modules=['myowntestmodule', 'somemod'], + test_suite='myowntestmodule', ) ''' @@ -59,7 +60,6 @@ class TestTest(TempdirManager, unittest.TestCase): def test_runs_simple_tests(self): command = [sys.executable, "setup.py", "test"] - command += ['--test-suite', 'myowntestmodule'] test_proc = subprocess.Popen(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE) _, errors = test_proc.communicate() |
