Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit 0f56851

Browse files
author
Bryan Mau
committed
updating comments and marking failing test
1 parent 8e014e7 commit 0f56851

3 files changed

Lines changed: 4 additions & 13 deletions

File tree

tests/e2e/tests/logging_test.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@
1414
def request_id():
1515
return os.environ.get('REQUEST_LOG_ID')
1616

17-
def test_log(request_id):
18-
logging.info('TESTING')
19-
20-
21-
# This test must happen after test_log.
17+
@pytest.mark.xfail
2218
def do_not_run_test_logservice_fetch(request_id):
2319
"""This test fails at logservice.fetch"""
20+
logging.info('TESTING')
2421
found_log = False
2522
for req_log in logservice.fetch(
2623
request_ids=[request_id],

tests/e2e/tests/memcache_test.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
"""Tests for the memcache API.
2-
3-
This test module is incomplete but is a starter.
4-
"""
1+
"""Tests for the memcache API."""
52

63
import pytest
74
import time

tests/e2e/tests/search_test.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
"""Tests for the search API.
2-
3-
This test module is incomplete but is a starter.
4-
"""
1+
"""Tests for the search API."""
52

63
import pytest
74
import time

0 commit comments

Comments
 (0)