diff options
| author | layday <layday@protonmail.com> | 2021-03-21 19:36:14 +0200 |
|---|---|---|
| committer | layday <layday@protonmail.com> | 2021-03-21 19:36:14 +0200 |
| commit | f3ba2139eacd5d27d052f0659b5d7dc1413977b0 (patch) | |
| tree | 17aa06b22717aa4d434314d03b451765ebb173f2 /setuptools/tests/test_build_meta.py | |
| parent | 8f2cc7a1f6cfbfdd8fd07b92dc086b24f2d00e41 (diff) | |
| download | python-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.py | 5 |
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") |
