summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_build_meta.py
diff options
context:
space:
mode:
authorlayday <layday@protonmail.com>2021-03-21 19:36:14 +0200
committerlayday <layday@protonmail.com>2021-03-21 19:36:14 +0200
commitf3ba2139eacd5d27d052f0659b5d7dc1413977b0 (patch)
tree17aa06b22717aa4d434314d03b451765ebb173f2 /setuptools/tests/test_build_meta.py
parent8f2cc7a1f6cfbfdd8fd07b92dc086b24f2d00e41 (diff)
downloadpython-setuptools-git-f3ba2139eacd5d27d052f0659b5d7dc1413977b0.tar.gz
fixup! fixup! build_meta: produce informative error when a dist is not found
Diffstat (limited to 'setuptools/tests/test_build_meta.py')
-rw-r--r--setuptools/tests/test_build_meta.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py
index f776b09d..ab75a189 100644
--- a/setuptools/tests/test_build_meta.py
+++ b/setuptools/tests/test_build_meta.py
@@ -450,10 +450,7 @@ class TestBuildMetaBackend:
with pytest.raises(
ValueError,
- match=re.escape(
- 'No distribution was found. The distribution was '
- 'possibly not built. Ensure that your `setup.py` '
- 'is not empty and that it calls `setup()`.')):
+ match=re.escape('No distribution was found.')):
getattr(build_backend, build_hook)("temp")