Skip to content

Commit deb441f

Browse files
committed
these python tests are supported now
1 parent 0041d75 commit deb441f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/python/tests/browsers/test_internet_explorer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_log_to_file(log_path):
3838
driver.quit()
3939

4040

41-
@pytest.mark.skip(reason="this is not supported, yet")
41+
@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
4242
def test_log_to_stdout(capfd):
4343
service = webdriver.IeService(log_output=subprocess.STDOUT)
4444

@@ -62,7 +62,7 @@ def test_log_level(log_path):
6262
driver.quit()
6363

6464

65-
@pytest.mark.skip(reason="this is not supported, yet")
65+
@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
6666
def test_supporting_files(temp_dir):
6767
service = webdriver.IeService(service_args=["–extract-path="+temp_dir])
6868

0 commit comments

Comments
 (0)