Actually, I mean -m test --match 'test_*_capi' where --match can also be written -m.<br><br>It may catch false positive since the filter is also applied to test case names and test method names.<br><br>Maybe 'test_*_capi.*' is better, I didn't try.<br><br>You may using use "ls Lib/test/test_*_capi.py > tests; ./python -m test --fromfile tests".<br><br>There are different options.<br><br>By the way, running the full test suite just takes 5 min on my laptop, it isn't so long ;-)<br><br>Victor<br><br>Le lundi 30 juillet 2018, Nick Coghlan <<a href="mailto:ncoghlan@gmail.com">ncoghlan@gmail.com</a>> a écrit :<br>> On 30 July 2018 at 21:23, Victor Stinner <<a href="mailto:vstinner@redhat.com">vstinner@redhat.com</a>> wrote:<br>>> Or maybe test_<name>_capi.py so you can more easily discover<br>>> test_unicode_cami while working on Unicode. You can use -m "test_*_capi" to<br>>> run all C API tests.<br>><br>> Missing word there: -m test "test*_capi"<br>><br>> I think between this approach and expanding test_capi to be a test<br>> package, not just a test file, I think it would be possible to make<br>> these parts of the test a fair bit more discoverable and maintainable.<br>><br>> Cheers,<br>> Nick.<br>><br>> --<br>> Nick Coghlan   |   <a href="mailto:ncoghlan@gmail.com">ncoghlan@gmail.com</a>   |   Brisbane, Australia<br>>