Skip to content

Commit

Permalink
Skip two checks for BSD
Browse files Browse the repository at this point in the history
* Test "test_delete_self()" was tested only on Darwin platforms with release 0.10.6
* Test "file_lifecyle" was introduced in the 2.0.0 release
  • Loading branch information
knobix committed Sep 18, 2021
1 parent 7b9c8ad commit 900477f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_emitter.py
Expand Up @@ -355,6 +355,7 @@ def test_separate_consecutive_moves():


@pytest.mark.flaky(max_runs=5, min_passes=1, rerun_filter=rerun_filter)
@pytest.mark.skipif(platform.is_bsd(), reason="BSD create another set of events for this test")
def test_delete_self():
mkdir(p('dir1'))
start_watching(p('dir1'))
Expand Down Expand Up @@ -642,6 +643,7 @@ def test_move_nested_subdirectories_on_windows():


@pytest.mark.flaky(max_runs=5, min_passes=1, rerun_filter=rerun_filter)
@pytest.mark.skipif(platform.is_bsd(), reason="BSD create another set of events for this test")
def test_file_lifecyle():
start_watching()

Expand Down

0 comments on commit 900477f

Please sign in to comment.