This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vajrasky
Recipients gvanrossum, vajrasky, vstinner
Date 2014-02-18.04:45:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392698742.57.0.282211048507.issue20668@psf.upfronthosting.co.za>
In-reply-to
Content
We can run the whole asyncio tests by using this command:
./python -m test.test_asyncio

But this way depends on the Lib/test/test_asyncio/tests.txt which contains all the tests that need to be executed. The problem is the core developer may forget to modify the tests.txt if he/she wants to add new test in asyncio test suite. Guido may not forget about it. But Victor forgot to modify the tests.txt when he added test_subprocess.py in asyncio tests suite.

So the proposed patch removes dependency on tests.txt file. When core developers add new test in asyncio tests suite, they just need to add the new file in test_asyncio directory itself. This patch was inspired by Lib/test/test_json/__init__.py.
History
Date User Action Args
2014-02-18 04:45:42vajraskysetrecipients: + vajrasky, gvanrossum, vstinner
2014-02-18 04:45:42vajraskysetmessageid: <1392698742.57.0.282211048507.issue20668@psf.upfronthosting.co.za>
2014-02-18 04:45:42vajraskylinkissue20668 messages
2014-02-18 04:45:41vajraskycreate