File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ def test_constraints_constrain_to_local(
466
466
"singlemodule" ,
467
467
allow_stderr_warning = True ,
468
468
)
469
- assert "Running setup.py install for singlemodule" in result .stdout
469
+ assert "Building wheel for singlemodule" in result .stdout
470
470
471
471
472
472
def test_constrained_to_url_install_same_url (
@@ -485,7 +485,7 @@ def test_constrained_to_url_install_same_url(
485
485
to_install ,
486
486
allow_stderr_warning = True ,
487
487
)
488
- assert "Running setup.py install for singlemodule" in result .stdout , str (result )
488
+ assert "Building wheel for singlemodule" in result .stdout , str (result )
489
489
490
490
491
491
@pytest .mark .usefixtures ("with_wheel" )
@@ -617,7 +617,7 @@ def test_install_distribution_full_union(
617
617
result = script .pip_install_local (
618
618
to_install , f"{ to_install } [bar]" , f"{ to_install } [baz]"
619
619
)
620
- assert "Running setup.py install for LocalExtras" in result .stdout
620
+ assert "Building wheel for LocalExtras" in result .stdout
621
621
result .did_create (script .site_packages / "simple" )
622
622
result .did_create (script .site_packages / "singlemodule.py" )
623
623
You can’t perform that action at this time.
0 commit comments