From 6856e17a263f7c107d3873db667d34c176e969ff Mon Sep 17 00:00:00 2001 From: Conrado Costa Date: Tue, 21 Jan 2025 15:48:27 -0500 Subject: [PATCH] fix set_recording_environments tokens --- conftest.py | 4 +++- docs/CHANGELOG.md | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index e82ea9138..e46211e9d 100644 --- a/conftest.py +++ b/conftest.py @@ -304,7 +304,9 @@ def set_invalid_tokens(is_recording_vcr, monkeypatch): @pytest.fixture(autouse=True) # Automatically use in tests. -def set_recording_environments(is_recording_vcr, monkeypatch): +def set_recording_environments( + is_recording_vcr, bugzilla_token, jira_token, monkeypatch +): """ automatically use local environments variables when writing VCRs cassettes """ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5ec1ab5f9..7f08a9768 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add SLA exclusion policies (OSIDB-3711) - Implement 'in' operator in SLA conditions (OSIDB-3711) - Enable async Jira task sync and transition (OSIDB-3693) +- Add basic end-to-end tests for Flaws, Affects and Trackers (OSIDB-3495) ### Changed - Removed `last_validated_dt` from exposed JSON Flaw History data (OSIDB-3814), handled edge-case that would cause failure (OSIDB-3858)