File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 33
33
34
34
35
35
@pytest .mark .docker
36
+ @pytest .mark .skipif (sys .platform .startswith ("win" ), "X11 not supported on Windows" )
36
37
class X11Test (unittest .TestCase ):
37
38
@classmethod
38
39
def setUpClass (self ):
@@ -93,7 +94,7 @@ def test_x11_extension_nocleanup(self):
93
94
# TODO(tfoote) do more to check that it doesn't actually clean up.
94
95
# This is more of a smoke test
95
96
96
-
97
+ @ pytest . mark . skipif ( sys . platform . startswith ( "win" ), "X11 not supported on Windows" )
97
98
def test_no_x11_xpdyinfo (self ):
98
99
for tag in self .dockerfile_tags :
99
100
dig = DockerImageGenerator ([], {}, tag )
@@ -112,6 +113,7 @@ def test_x11_xpdyinfo(self):
112
113
113
114
114
115
@pytest .mark .docker
116
+ @pytest .mark .skipif (sys .platform .startswith ("win" ), "NVIDIA not supported on Windows" )
115
117
class NvidiaTest (unittest .TestCase ):
116
118
@classmethod
117
119
def setUpClass (self ):
You can’t perform that action at this time.
0 commit comments