Skip to content

Commit

Permalink
Mark the failure in tools/wptrunner as xfail on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders authored and jgraham committed Sep 11, 2018
1 parent 52559ec commit 6648ca9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/wptrunner/wptrunner/tests/test_testloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import sys
import tempfile

import pytest

sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", ".."))

from mozlog import structured
Expand All @@ -19,6 +21,8 @@
"""


@pytest.mark.xfail(sys.platform == "win32",
reason="NamedTemporaryFile cannot be reopened on Win32")
def test_filter_unicode():
tests = make_mock_manifest(("test", "a", 10), ("test", "a/b", 10),
("test", "c", 10))
Expand Down

0 comments on commit 6648ca9

Please sign in to comment.