summaryrefslogtreecommitdiff
path: root/testing/test_regressions.py
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2023-05-09 13:17:04 +0200
committerGitHub <noreply@github.com>2023-05-09 13:17:04 +0200
commit4751f74e4e1478f439ea8fb2102365460acc556b (patch)
tree24749cb039b171df2690edec2e8cbd2428428eac /testing/test_regressions.py
parentd2087b0c8e52f6600f7f68b74ff688bcdf04aaeb (diff)
parent2e1ada5f75b74ea181c786550e9e858c02c66547 (diff)
downloadsetuptools-scm-main.tar.gz
Merge pull request #845 from RonnyPfannschmidt/move-setuptools-integrationHEADmain
move setuptools integration to private subpackage
Diffstat (limited to 'testing/test_regressions.py')
-rw-r--r--testing/test_regressions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_regressions.py b/testing/test_regressions.py
index 018f37e..44cc3c0 100644
--- a/testing/test_regressions.py
+++ b/testing/test_regressions.py
@@ -90,7 +90,7 @@ def test_case_mismatch_on_windows_git(tmp_path: Path) -> None:
def test_entrypoints_load() -> None:
- d = distribution("setuptools-scm") # type: ignore [no-untyped-call]
+ d = distribution("setuptools-scm")
eps = d.entry_points
failed: list[tuple[EntryPoint, Exception]] = []