Skip to content

Commit add5f1a

Browse files
authored
Remove flakey download tests (#577)
* Remove flakey download tests Signed-off-by: Ryan Wolf <rywolf@nvidia.com> * Modify to skip with reason Signed-off-by: Ryan Wolf <rywolf@nvidia.com> --------- Signed-off-by: Ryan Wolf <rywolf@nvidia.com>
1 parent e662ac0 commit add5f1a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_download.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,18 @@ def test_resiliparse_extract_text(self):
124124

125125
assert result == expected
126126

127+
@pytest.mark.skip(
128+
reason="This test is flaky due to calling out to an external service and should be fixed."
129+
)
127130
def test_incorrect_snapshot_order(self):
128131
with pytest.raises(ValueError):
129132
end_snapshot = "2021-04"
130133
start_snapshot = "2021-10"
131134
urls = get_common_crawl_urls(start_snapshot, end_snapshot)
132135

136+
@pytest.mark.skip(
137+
reason="This test is flaky due to calling out to an external service and should be fixed."
138+
)
133139
def test_incorrect_snapshot_order_news(self):
134140
with pytest.raises(ValueError):
135141
end_snapshot = "2021-04"

0 commit comments

Comments
 (0)