Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand

driver_version = "1.15.0-next-1631655106000"
driver_version = "1.15.0-1631797286000"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
Expand Down
2 changes: 2 additions & 0 deletions tests/async/test_resource_timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.

import pytest
from flaky import flaky


async def test_should_work(page, server, is_webkit, is_mac):
Expand Down Expand Up @@ -60,6 +61,7 @@ async def test_should_work_for_subresource(page, server, is_win, is_mac, is_webk
assert timing["responseEnd"] < 10000


@flaky # Upstream flaky
async def test_should_work_for_ssl(browser, https_server, is_mac, is_webkit):
if is_webkit and is_mac:
pytest.skip()
Expand Down
1 change: 1 addition & 0 deletions tests/sync/test_resource_timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def test_should_work_for_subresource(
assert timing["responseEnd"] < 10000


@flaky # Upstream flaky
def test_should_work_for_ssl(
browser: Browser, https_server: Server, is_mac: bool, is_webkit: bool
) -> None:
Expand Down