Closed peterbe closed 3 years ago
Merging #7930 (6f7ce15) into master (ebe8fb8) will not change coverage. The diff coverage is
n/a
.:exclamation: Current head 6f7ce15 differs from pull request most recent head 6bd1c68. Consider uploading reports for the commit 6bd1c68 to get more accurate results
@@ Coverage Diff @@
## master #7930 +/- ##
=======================================
Coverage 83.53% 83.53%
=======================================
Files 131 131
Lines 5498 5498
Branches 463 463
=======================================
Hits 4593 4593
Misses 800 800
Partials 105 105
Impacted Files | Coverage Δ | |
---|---|---|
kuma/users/tests/test_adapters.py | 100.00% <ø> (ø) |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update ebe8fb8...6bd1c68. Read the comment docs.
At some point,
pyproject.toml
andpoetry.lock
got a new version of black. E.g. https://github.com/mdn/kuma/commit/c705739a2596b0d8af7e47ad35a3c79f865bb4d6 What happened was that.github/workflows/python-lints.yml
never ran. Now what happens is that the version ofblack
you get inside the docker container doesn't match the version ofblack
used inpython-lints.yml
. Worse, because it wouldn't even have noticed because a change topyproject.toml
our.py
files no longer match that version that you get inside the docker container. So, when you runblack
insidebash
on your docker container, it says some files aren't formatted even though nobody's touched them for ages. This PR solves both problems.