Skip to content

Commit

Permalink
end2endTest: mark all performance tests as xfail on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphlange committed Aug 1, 2023
1 parent cc8f153 commit 26e4b3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion end2endTest/test_opcua.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def test_timestamps(self, test_inst_TZ):


class TestPerformanceTests:
@pytest.mark.xfail("CI" in environ, reason="GitLab runner performance issues")
@pytest.mark.xfail("CI" in environ, reason="CI runner performance varies")
def test_write_performance(self, test_inst):
"""
Write 5000 variable values and measure
Expand Down Expand Up @@ -703,6 +703,7 @@ def test_write_performance(self, test_inst):
assert avgt < 5
assert totr < 3000

@pytest.mark.xfail("CI" in environ, reason="CI runner performance varies")
def test_read_performance(self, test_inst):
"""
Read 5000 variable values and measure time and
Expand Down

0 comments on commit 26e4b3e

Please sign in to comment.