From 9508eaddd5e9240a585237c60e50273348bfa72e Mon Sep 17 00:00:00 2001 From: Svenn-Arne Dragly Date: Mon, 22 Jan 2024 10:20:09 +0100 Subject: [PATCH] fixup! Move check for --extra and --all-extras outside loop --- tests/test_cli_compile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_cli_compile.py b/tests/test_cli_compile.py index e0aff2ed..e07b80ae 100644 --- a/tests/test_cli_compile.py +++ b/tests/test_cli_compile.py @@ -3030,6 +3030,9 @@ def test_cli_compile_all_extras_with_multiple_packages( ) assert out.exit_code == 0, out + assert "--all-extras" in out.stderr + assert "test_package_1/0.1/setup.py" in out.stderr + assert "test_package_2/0.1/setup.py" in out.stderr @pytest.mark.parametrize(