fix(hex): Use only updated_after for pagination

This commit is contained in:
KShivendu 2023-02-05 15:32:17 +05:30 committed by Kumar Shivendu
parent ac9993a001
commit 9095bbec00
4 changed files with 46 additions and 60 deletions

View file

@ -5,6 +5,14 @@
import os
import pytest
pytest_plugins = ["swh.scheduler.pytest_plugin", "swh.core.github.pytest_plugin"]
os.environ["LC_ALL"] = "C.UTF-8"
@pytest.fixture(autouse=True)
def tenacity_wait(mocker):
# Stops tenacity from blocking lister tests for 50x errors
mocker.patch("tenacity.nap.time")