diff --git a/requirements_test.txt b/requirements_test.txt index 7bace146..c562ce50 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -13,6 +13,7 @@ pytest-timeout pytest-xdist pytest-cov pytest-check +pytest-jira dynaconf==3.1.11 freezegun oauthlib>=3.2.0 diff --git a/tests/e2e/test_non_alpha_keys.py b/tests/e2e/test_non_alpha_keys.py index e0cb48be..ea9e5863 100644 --- a/tests/e2e/test_non_alpha_keys.py +++ b/tests/e2e/test_non_alpha_keys.py @@ -14,6 +14,7 @@ DEFAULT_TIMEOUT = 15 +@pytest.mark.jira("AAP-16038") @pytest.mark.e2e @pytest.mark.asyncio async def test_non_alpha_numeric_keys(): diff --git a/tests/test_examples.py b/tests/test_examples.py index eceee736..0348dbcd 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -2245,6 +2245,7 @@ async def test_78_complete_retract_fact(): ] +@pytest.mark.jira("AAP-9829") @pytest.mark.parametrize("err_msg,err", WORKFLOW_TEMPLATE_ERRORS) @pytest.mark.asyncio async def test_79_workflow_job_template_exception(err_msg, err): @@ -2291,6 +2292,7 @@ async def test_79_workflow_job_template_exception(err_msg, err): assert set(action.keys()).issuperset(required_keys) +@pytest.mark.jira("AAP-9829") @pytest.mark.asyncio async def test_79_workflow_job_template(): ruleset_queues, event_log = load_rulebook( @@ -2379,6 +2381,7 @@ async def test_81_match_single_rule(): await validate_events(event_log, **checks) +@pytest.mark.jira("AAP-16038") @pytest.mark.asyncio async def test_82_non_alpha_keys(): ruleset_queues, event_log = load_rulebook("examples/82_non_alpha_keys.yml")