Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wxtim committed Jan 13, 2025
1 parent 3f71495 commit 226a9bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/unit/test_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 226a9bc

Please sign in to comment.