Skip to content

Commit f28290d

Browse files
committed
[py] Remove Windows unit tests from CI again
1 parent c60ecd6 commit f28290d

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

.github/workflows/ci-python.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
matrix:
6464
include:
6565
- os: ubuntu
66-
- os: windows
6766
- os: macos
6867
with:
6968
name: Unit Tests (${{ matrix.os }})

py/test/selenium/webdriver/chrome/chrome_service_tests.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,6 @@ def test_log_output_null_default(driver, capfd) -> None:
108108
driver.quit()
109109

110110

111-
@pytest.mark.skipif(
112-
sys.platform == "win32",
113-
reason="chromedriver doesn't return an error on windows if you use an invalid profile path",
114-
)
115111
@pytest.mark.no_driver_after_test
116112
def test_driver_is_stopped_if_browser_cant_start(clean_driver, clean_options, driver_executable) -> None:
117113
clean_options.add_argument("--user-data-dir=/no/such/location")

py/test/selenium/webdriver/edge/edge_service_tests.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,6 @@ def test_log_output_null_default(driver, capfd) -> None:
108108
driver.quit()
109109

110110

111-
@pytest.mark.skipif(
112-
sys.platform == "win32",
113-
reason="edgedriver doesn't return an error on windows if you use an invalid profile path",
114-
)
115111
@pytest.mark.no_driver_after_test
116112
def test_driver_is_stopped_if_browser_cant_start(clean_driver, clean_options, clean_service, driver_executable) -> None:
117113
clean_options.add_argument("--user-data-dir=/no/such/location")

0 commit comments

Comments
 (0)