[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset bf661f72aaab by Victor Stinner in branch '3.4': Issue #20668: Remove tests.txt of test_asyncio http://hg.python.org/cpython/rev/bf661f72aaab New changeset a76e459e09be by Victor Stinner in branch 'default': (Merge 3.4) Issue #20668: Remove tests.txt

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-31 Thread Vajrasky Kok
Vajrasky Kok added the comment: Thanks for committing my patch, Yury. But you forgot to remove Lib/test/test_asyncio/tests.txt. -- ___ Python tracker ___ ___

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-27 Thread Yury Selivanov
Yury Selivanov added the comment: Guido, good idea. Committed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 07984815003f by Yury Selivanov in branch '3.4': asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668 http://hg.python.org/cpython/rev/07984815003f -- ___ Python tracker

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-27 Thread Guido van Rossum
Guido van Rossum added the comment: I think this is reasonable to also commit to the 3.4 branch so it will appear in 3.4.1. -- ___ Python tracker ___ ___

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-03-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset bcc77493249c by Yury Selivanov in branch 'default': asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668 http://hg.python.org/cpython/rev/bcc77493249c -- nosy: +python-dev resolution: -> fixed stage: -> committed

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-02-19 Thread Yury Selivanov
Yury Selivanov added the comment: > Please wait until after 3.4 release. Not critical. I'll assign this to myself to commit this after 3.4. -- assignee: -> yselivanov ___ Python tracker ___

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-02-19 Thread Guido van Rossum
Guido van Rossum added the comment: Please wait until after 3.4 release. Not critical. On Wednesday, February 19, 2014, Yury Selivanov wrote: > > Changes by Yury Selivanov >: > > > -- > nosy: +yselivanov > > ___ > Python tracker > >

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-02-19 Thread Yury Selivanov
Changes by Yury Selivanov : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-02-17 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks, LGTM. Please commit and add to issue 20648. -- ___ Python tracker ___ ___ Python-bugs-list

[issue20668] Remove dependency on tests.txt when running test_asyncio suite

2014-02-17 Thread Vajrasky Kok
New submission from Vajrasky Kok: 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 th