Improve performance on maps with many children #307
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Run tests each PR | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, "3.10", 3.11] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: build streamlit-folium JS | |
run: | | |
cd streamlit_folium/frontend/ | |
npm install | |
npm run build | |
- name: Install python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest pytest-playwright | |
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi | |
pip install -e . | |
- uses: pre-commit/[email protected] | |
- name: Install playwright dependencies | |
run: | | |
playwright install --with-deps | |
- name: Install annotate-failures-plugin | |
run: pip install pytest-github-actions-annotate-failures | |
- name: Test with pytest and retry flaky tests up to 3 times | |
run: | | |
pytest --browser chromium -s --retries 3 --junit-xml=test-results.xml | |
- name: Surface failing tests | |
if: always() | |
uses: pmeier/pytest-results-action@main | |
with: | |
path: test-results.xml | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: screenshots | |
path: screenshot*.png |