File tree Expand file tree Collapse file tree 3 files changed +40
-396
lines changed
Expand file tree Collapse file tree 3 files changed +40
-396
lines changed Original file line number Diff line number Diff line change 3434 run : python -m pip install -e . --no-deps --force-reinstall
3535
3636 - name : Code tests
37- run : python -m pytest -vv --ignore=tests/selenium
37+ run : python -m pytest -vv --ignore=tests/selenium --ignore=tests/streamlit
Original file line number Diff line number Diff line change 1+ name : Selenium Tests
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ run :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ python-version : [ "3.9", "3.13" ]
15+ fail-fast : false
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Setup Micromamba env
21+ uses : mamba-org/setup-micromamba@v2
22+ with :
23+ environment-name : TEST
24+ create-args : >-
25+ python=3
26+ --file requirements.txt
27+ --file requirements-dev.txt
28+
29+ - name : Install folium from source
30+ shell : bash -l {0}
31+ run : python -m pip install -e . --no-deps --force-reinstall
32+
33+ - name : Install playwright dependencies
34+ run : |
35+ playwright install --with-deps
36+
37+ - name : Streamlit tests
38+ shell : bash -l {0}
39+ run : python -m pytest tests/streamlit -vv
You can’t perform that action at this time.
0 commit comments