Mike Fiedler
Mike Fiedler
Since this email is triggered during upload, the resulting domain sent to users is broken, as it's using `uploads.pypi.org` which this domain doesn't support. Signed-off-by: Mike Fiedler
Here's an example test case: ```python from tests.common.db.accounts import UserFactory def test_user_profile(db_session, webtest): user = UserFactory.create() assert user.username # vist user's page resp = webtest.get(f"/user/{user.username}/") assert resp.status_code == 200 ```...
As we proceed in evolving our own Admin interface to review and act on inbound reports, here's some things that should happen. - [x] Extend `Observations` to allow for `additional`...
To make it easier to copy code from the docs and paste into a terminal, add `sphinx-copybutton` which Furo theme already supports. Refs: https://pypi.org/project/sphinx-copybutton/ Remove leading `$` signs for commands,...
List of test runs that expose a non-deterministic test result (failure) when run with a specific random seed (ordering). To reproduce, use `TESTARGS="--randomly-seed= -vvv" make tests` before adding to this...
Two files `warehouse/manage/views.py` and `tests/unit/manage/test_views.py` are some of the largest Python files in the codebase today. As reported by [scc](https://github.com/boyter/scc) (trimmed): ```shellsession $ scc warehouse/ tests/ --by-file --format wide ─────────────────────────────────────────────────────────────────────────────────────────────────────────────...
Meant to replace `Release.keywords`, add the column and populate with newly uploaded data. Part 1 of a few - see #12996 for background.
From https://github.com/pypi/warehouse/pull/13457 Raised a TemplateError for `if foo is None` Why doesn't curlylint catch this?
The latest `types-requests` package removes a dependency on `types-urllib3`, and the typeshed has completely removed `urllib3` types from the shed, since they are available in 2.0.x series. https://github.com/python/typeshed/pull/10812 We are...
Python 3.12 is going to have a release candidate soon, so we might as well test it out. https://peps.python.org/pep-0693/ Apply a patch locally to test it out yourself. ```diff diff...