From 226a9bcc8112f9f2a6cd0ca774198b197db2cfa3 Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:34:02 +0000 Subject: [PATCH] fix test --- tests/unit/test_resources.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_resources.py b/tests/unit/test_resources.py index bb6d32e0e0c..2ba6020442e 100644 --- a/tests/unit/test_resources.py +++ b/tests/unit/test_resources.py @@ -40,7 +40,11 @@ def test_get_resources_one(tmpdir): @pytest.mark.parametrize( 'resource', - list(RESOURCE_NAMES.keys()) + ['tutorial/runtime-tutorial'] + [ + r for r + in list(RESOURCE_NAMES.keys()) + if r[0] != '!' + ] + ['tutorial/runtime-tutorial'] ) def test_get_resources_all(resource, tmpdir): get_resources(resource, tmpdir)