Skip to content

Commit

Permalink
Silence new pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun committed Oct 3, 2023
1 parent c5da117 commit 88ebbb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Fixtures for tests."""
#pylint: disable=redefined-outer-name,unused-argument
from __future__ import annotations

import shutil
Expand Down
2 changes: 2 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ def test_TEST_T123():
)
report = pytester.runpytest("--adaptavist")
matcher = LineMatcher(report.outlines)

#pylint: disable=line-too-long
matcher.fnmatch_lines(
[
"traceability: https://jira.test/secure/Tests.jspa#/reports/traceability/report/view?tql=testResult.projectKey%20IN%20%28%22TEST%22%29%20AND%20testRun.key%20IN%20%28%22TEST-C1%22%29%20AND%20testRun.onlyLastTestResult%20IS%20true&jql=&title=REPORTS.TRACEABILITY_REPORT.TITLE&traceabilityReportOption=COVERAGE_TEST_CASES&traceabilityTreeOption=COVERAGE_TEST_CASES&traceabilityMatrixOption=COVERAGE_TEST_CASES&period=MONTH&scorecardOption=EXECUTION_RESULTS",
Expand Down

0 comments on commit 88ebbb4

Please sign in to comment.