Skip to content

Commit

Permalink
Switch deps
Browse files Browse the repository at this point in the history
  • Loading branch information
blackary committed Sep 22, 2023
1 parent 45e8e16 commit 7c0335d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/run_tests_each_PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,14 @@ jobs:

- name: Test with pytest and retry flaky tests up to 3 times
run: |
pytest --browser chromium -s --retries 3 --junit-xml=test-results.xml
pytest --browser chromium -s --reruns 3 --junit-xml=test-results.xml
- name: Surface failing tests
if: always()
uses: pmeier/pytest-results-action@main
with:
path: test-results.xml
fail-on-empty: false

- uses: actions/upload-artifact@v3
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ streamlit>1.11.1
pytest>=7.1.2
folium>=0.13
pytest-playwright
pytest-retry
pytest-rerunfailures
2 changes: 0 additions & 2 deletions tests/test_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ def test_draw(page: Page):
'internal:attr=[title="streamlit_folium.st_folium"i]'
).get_by_role("link", name="Draw a polygon").click()

assert False


def test_limit_data(page: Page):
# Test limit data support
Expand Down

0 comments on commit 7c0335d

Please sign in to comment.