Disable the remaining messages check for uploads

The HTTP request for the statistics is taking more 30 seconds which leads to 504 errors from CloudFront.
This commit is contained in:
Andrew White
2021-05-21 22:44:34 +01:00
committed by Andrew White
parent 658e40b6c5
commit 00c3943222
2 changed files with 15 additions and 4 deletions

View File

@@ -38,9 +38,9 @@ def test_client_gets_service(mocker):
@pytest.mark.parametrize('today_only, limit_days', [
(True, None),
(False, None),
(False, 30),
pytest.param(True, None, marks=pytest.mark.xfail(raises=AssertionError)),
])
def test_client_gets_service_statistics(mocker, today_only, limit_days):
client = ServiceAPIClient()