Skip to content

Commit

Permalink
Swap skip with xfail on test_start_with_callback
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Feb 12, 2021
1 parent 600efee commit 8880381
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion magicbus/test/test_processbus.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,10 @@ def main_listener():
# to the "main" channel.
assert len(main_calls) > 0

@pytest.mark.skip('Fails intermittently; https://tinyurl.com/ybwwu4gz')
@pytest.mark.xfail(
reason='Fails intermittently; https://tinyurl.com/ybwwu4gz',
strict=False, # Because it's flaky
)
def test_start_with_callback(self):
b = ProcessBus()
self.log(b)
Expand Down

0 comments on commit 8880381

Please sign in to comment.