Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Aug 30, 2024
1 parent 6921143 commit a80d528
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_draw_automation_state_report_creates_file(case_stat, case_stat_random,
remove(filename)


@pytest.mark.xfail(condition='GITHUB_ACTIONS' in environ, reason="Image may differ on GA env")
@pytest.mark.xfail(condition="GITHUB_ACTIONS" in environ, reason="Image may differ on GA env")
def test_draw_automation_state_report_creates_correct_image(
random_expected_image, compare_image # pylint: disable=W0621
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_draw_test_case_by_area_creates_file(case_stat, case_stat_random, random
remove(filename)


@pytest.mark.xfail(condition='GITHUB_ACTIONS' in environ, reason="Image may differ on GA env")
@pytest.mark.xfail(condition="GITHUB_ACTIONS" in environ, reason="Image may differ on GA env")
def test_draw_test_case_by_area_creates_correct_image(random_expected_image, compare_image): # pylint: disable=W0621
"""
Init PlotlyReporter and call draw_test_case_by_area with valid parameters should create correct image
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_draw_test_case_by_priority_creates_file(random_plotly_reporter):
remove(filename)


@pytest.mark.xfail(condition='GITHUB_ACTIONS' in environ, reason="Image may differ on GA env")
@pytest.mark.xfail(condition="GITHUB_ACTIONS" in environ, reason="Image may differ on GA env")
def test_draw_test_case_by_priority_creates_correct_image(compare_image, random_plotly_reporter):
"""
Init PlotlyReporter and call draw_test_case_by_priority with valid parameters should create correct image
Expand Down

0 comments on commit a80d528

Please sign in to comment.