From 5835e58103a20a5bb7d14f1c1109fce170d10bc9 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 3 Aug 2019 15:34:34 -0700 Subject: [PATCH] Enable docker tests on windows in CI --- testing/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/util.py b/testing/util.py index d82612fa..9ea86c7c 100644 --- a/testing/util.py +++ b/testing/util.py @@ -30,7 +30,7 @@ def cmd_output_mocked_pre_commit_home(*args, **kwargs): skipif_cant_run_docker = pytest.mark.skipif( - os.name == 'nt' or not docker_is_running(), + not docker_is_running(), reason="Docker isn't running or can't be accessed", )