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 jaraco
Recipients ethan.furman, jaraco
Date 2021-12-19.02:43:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639881810.88.0.0943072618415.issue46126@roundup.psfhosted.org>
In-reply-to
Content
My guess is the tests were run with something like this:

```
./python.exe -E -We -m test -v test_importlib | grep '... ERROR'
Entry points should only be exposed for the first package ... ERROR
test test_importlib failed
```

In that case, the location of the test is replaced with the first line of the docstring. If there's no docstring, however, the location of the failure is easier to detect:

```
$ ./python.exe -E -We -m test -v test_importlib | grep '... ERROR'
test_entry_points_unique_packages (test.test_importlib.test_metadata_api.APITests) ... ERROR
test test_importlib failed
```
History
Date User Action Args
2021-12-19 02:43:30jaracosetrecipients: + jaraco, ethan.furman
2021-12-19 02:43:30jaracosetmessageid: <1639881810.88.0.0943072618415.issue46126@roundup.psfhosted.org>
2021-12-19 02:43:30jaracolinkissue46126 messages
2021-12-19 02:43:30jaracocreate