Skip to content

Commit

Permalink
ci(#49): seed a test failure
Browse files Browse the repository at this point in the history
Signed-off-by: Bryant Finney <[email protected]>
  • Loading branch information
bryant-finney committed Dec 23, 2023
1 parent 8f70d9c commit 351d7ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_nested_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# stdlib
from typing import Any

# third party
import pytest

# local
from pyspry.nested_dict import NestedDict

Expand All @@ -13,3 +16,4 @@ def test_nested_dict_keys(configuration: dict[str, Any]) -> None:
nested_dict = NestedDict(configuration)
assert "APP_NAME_ATTR_B_K" in list(nested_dict.keys())
assert "APP_NAME" not in list(nested_dict.keys())
pytest.fail("seeded test failure")

0 comments on commit 351d7ce

Please sign in to comment.