Skip to content

Commit

Permalink
Python: Skip collection_enabled tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Nov 28, 2024
1 parent 96c7eb6 commit 4979b6a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions glean-core/python/tests/test_collection_enabled.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@


from pathlib import Path
import pytest
import sys


from glean import Configuration, Glean, load_pings
Expand All @@ -20,6 +22,7 @@
ROOT = Path(__file__).parent


@pytest.mark.skipif(sys.platform == "win32", reason="bug 1933943: Windows failures")
def test_pings_with_follows_false_follow_their_own_setting(tmpdir, helpers):
info_path = Path(str(tmpdir)) / "info.txt"
data_dir = Path(str(tmpdir)) / "glean"
Expand Down Expand Up @@ -73,6 +76,7 @@ def test_pings_with_follows_false_follow_their_own_setting(tmpdir, helpers):
assert 2 == payload["metrics"]["counter"]["local.counter"]


@pytest.mark.skipif(sys.platform == "win32", reason="bug 1933943: Windows failures")
def test_loader_sets_flags(tmpdir, helpers):
info_path = Path(str(tmpdir)) / "info.txt"
data_dir = Path(str(tmpdir)) / "glean"
Expand Down

0 comments on commit 4979b6a

Please sign in to comment.