From d0b92c560d2c6bc780bd0d0b7f8a926a20c15fc2 Mon Sep 17 00:00:00 2001 From: ziransun Date: Sat, 24 Oct 2020 10:40:31 +0000 Subject: [PATCH] Bug 1672545 [wpt PR 26202] - Python3: Remove xfail for wpt unit tests in PY3, a=testonly Automatic update from web-platform-tests Python3: Remove xfail for wpt unit tests in PY3 (#26202) Tests in test_wpt.py were marked as xfail due to virtualenv activation issue (https://github.com/pypa/virtualenv/issues/1710) This issue has now been solved. -- wpt-commits: 35faa70dcf2889231814b97c6a04e6fee8916e0e wpt-pr: 26202 --- testing/web-platform/tests/tools/wpt/tests/test_wpt.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/testing/web-platform/tests/tools/wpt/tests/test_wpt.py b/testing/web-platform/tests/tools/wpt/tests/test_wpt.py index f0a9524c90a4..02b611e378b8 100644 --- a/testing/web-platform/tests/tools/wpt/tests/test_wpt.py +++ b/testing/web-platform/tests/tools/wpt/tests/test_wpt.py @@ -1,6 +1,5 @@ import errno import os -import platform import shutil import socket import subprocess @@ -44,9 +43,6 @@ def get_persistent_manifest_path(): @pytest.fixture(scope="module", autouse=True) def init_manifest(): - # See https://github.com/pypa/virtualenv/issues/1710 - if sys.version_info[0] >= 3 and platform.system() == "Windows": - pytest.xfail(reason="virtualenv activation fails in Windows for python3") with pytest.raises(SystemExit) as excinfo: wpt.main(argv=["manifest", "--no-download", "--path", get_persistent_manifest_path()])