Skip to content

Commit

Permalink
Switch skip to use CI (#30512)
Browse files Browse the repository at this point in the history
Fairly certain `BUILD_ID` is jenkins-specific.

(cherry picked from commit ca4a87a)
  • Loading branch information
matschaffer authored and mergify-bot committed Feb 22, 2022
1 parent 6842e1e commit 6bdcabf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auditbeat/tests/system/test_file_integrity.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def wait_output(self, min_events):
else:
break

@unittest.skipIf(os.getenv("BUILD_ID") is not None and platform.system() == 'Darwin',
@unittest.skipIf(os.getenv("CI") is not None and platform.system() == 'Darwin',
'Flaky test: https://github.com/elastic/beats/issues/24678')
def test_non_recursive(self):
"""
Expand Down

0 comments on commit 6bdcabf

Please sign in to comment.