From 1edf2e0fb6d83ccdf9be4555821df9f510646edf Mon Sep 17 00:00:00 2001 From: Ryan Dale Date: Sat, 16 Mar 2024 21:53:22 -0400 Subject: [PATCH] ensure missing just after checking --- test/test_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_utils.py b/test/test_utils.py index c14a0e98b4..45515649dc 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -261,6 +261,7 @@ def test_multi_build(multi_build): for v in multi_build.values(): for pkg in v: assert os.path.exists(pkg) + ensure_missing(pkg) @pytest.mark.tmp @@ -272,6 +273,7 @@ def test_multi_build_exclude(multi_build_exclude): assert not os.path.exists(pkg) else: assert os.path.exists(pkg) + ensure_missing(pkg) @pytest.mark.skipif(SKIP_DOCKER_TESTS, reason='skipping on osx')