Skip to content

Commit

Permalink
temporary disable the failed windows test (#37880)
Browse files Browse the repository at this point in the history
* temporary disable the failed windows test

* Update metricbeat/tests/system/test_reload.py

Co-authored-by: Victor Martinez <[email protected]>

---------

Co-authored-by: Victor Martinez <[email protected]>
  • Loading branch information
sharbuz and v1v authored Feb 6, 2024
1 parent a21051d commit e12d5b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metricbeat/tests/system/test_reload.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def test_reload(self):
self.wait_until(lambda: self.output_lines() > 0)
proc.check_kill_and_wait()

@unittest.skipUnless(re.match("(?i)win|linux|darwin|freebsd|openbsd", sys.platform), "os")
# windows is disabled, see https://github.com/elastic/beats/issues/37841
@unittest.skipUnless(re.match("(?i)linux|darwin|freebsd|openbsd", sys.platform), "os")
def test_start_stop(self):
"""
Test if module is properly started and stopped
Expand Down

0 comments on commit e12d5b5

Please sign in to comment.