Selenium Tests #1598
This file contains hidden or 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
| name: Selenium Tests | |
| on: | |
| schedule: | |
| - cron: "0 13 * * *" | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ "3.9", "3.13" ] | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Micromamba env | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-name: TEST | |
| create-args: >- | |
| python=3 | |
| --file requirements.txt | |
| --file requirements-dev.txt | |
| - name: Install folium from source | |
| run: python -m pip install -e . --no-deps --force-reinstall | |
| - name: Selenium tests | |
| run: coverage run -p -m pytest tests/selenium -vv | |
| - name: Upload coverage | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-test-selenium-${{ matrix.python-version }} | |
| path: | | |
| .coverage* | |
| include-hidden-files: true |