Fix streamlit-folium incompatibility (add layer to map with new class) #612
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
name: Code Tests | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: ["3.8", "3.11"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Micromamba env | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: TEST | |
create-args: >- | |
python=${{ matrix.python-version }} | |
--file requirements.txt | |
--file requirements-dev.txt | |
- name: Install folium from source | |
shell: bash -l {0} | |
run: python -m pip install -e . --no-deps --force-reinstall | |
- name: Code tests | |
shell: bash -l {0} | |
run: python -m pytest -vv --ignore=tests/selenium |