Skip to content

Commit

Permalink
Merge pull request #235 from sarahyurick/remove_flaky_pytest
Browse files Browse the repository at this point in the history
Remove flaky PyTest
  • Loading branch information
sarahyurick authored Sep 9, 2024
2 parents 0eb3f68 + 39e2449 commit c2f296c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
pip install wheel cython
pip install --no-cache-dir .
pip install pytest
pip install pytest-rerunfailures
- name: Run tests
run: |
python -m pytest -v --cpu
4 changes: 3 additions & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ def test_incorrect_snapshot_order_news(self):
start_snapshot = "2021-10"
urls = get_common_crawl_urls(start_snapshot, end_snapshot, news=True)

@pytest.mark.flaky(reruns=5)
@pytest.mark.skip(
reason="Skipping until we figure out how to get this to a non flaky state"
)
def test_uneven_common_crawl_range(self):
start_snapshot = "2021-03"
end_snapshot = "2021-11"
Expand Down

0 comments on commit c2f296c

Please sign in to comment.