From 4cdbffe82309f89f017cb53ee9cbf64ee489018a Mon Sep 17 00:00:00 2001 From: Xavier Deguillard Date: Mon, 11 Jan 2021 12:04:52 -0800 Subject: [PATCH] integration: allow OSS integration test to build on Windows Summary: On Windows, since Mercurial doesn't yet build with Buck, we need to test against the system Mercurial, thus remove the dependencies to //eden/scm:hg for the tests. Also remove various dependencies that don't build yet on Windows. This allows for the tests to run, but fail while trying to execute edenfsctl.par. Reviewed By: kmancini Differential Revision: D25807727 fbshipit-source-id: c2533eedc361cc6db9fdf2190476c3d52833139d --- eden/integration/lib/service_test_case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eden/integration/lib/service_test_case.py b/eden/integration/lib/service_test_case.py index da45913b9a..54bbf34d6f 100644 --- a/eden/integration/lib/service_test_case.py +++ b/eden/integration/lib/service_test_case.py @@ -25,7 +25,7 @@ if sys.platform.startswith("linux"): from .systemd import SystemdService, SystemdUserServiceManager, temp_systemd try: - import pystemd # noqa: F401 + import pystemd # noqa: F401 # @manual _systemd_supported = True except ModuleNotFoundError: