File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -641,9 +641,9 @@ def test_editable_install__local_dir_no_setup_py(
641
641
642
642
msg = result .stderr
643
643
if deprecated_python :
644
- assert 'File "setup.py" not found. ' in msg
644
+ assert 'File "setup.py" or "setup.cfg" not found. ' in msg
645
645
else :
646
- assert msg .startswith ('ERROR: File "setup.py" not found. ' )
646
+ assert msg .startswith ('ERROR: File "setup.py" or "setup.cfg" not found. ' )
647
647
assert 'pyproject.toml' not in msg
648
648
649
649
@@ -663,9 +663,9 @@ def test_editable_install__local_dir_no_setup_py_with_pyproject(
663
663
664
664
msg = result .stderr
665
665
if deprecated_python :
666
- assert 'File "setup.py" not found. ' in msg
666
+ assert 'File "setup.py" or "setup.cfg" not found. ' in msg
667
667
else :
668
- assert msg .startswith ('ERROR: File "setup.py" not found. ' )
668
+ assert msg .startswith ('ERROR: File "setup.py" or "setup.cfg" not found. ' )
669
669
assert 'A "pyproject.toml" file was found' in msg
670
670
671
671
You can’t perform that action at this time.
0 commit comments