Skip to content

Commit b13b82e

Browse files
committed
Fix missing package install
1 parent 1e90fc3 commit b13b82e

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/test_streamlit_folium.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ jobs:
3636
npm install
3737
npm run build
3838
39-
- name: Install streamlit_folium
40-
shell: bash -l {0}
41-
run: |
42-
cd streamlit_folium
43-
pip install -e . --no-deps --force-reinstall
44-
4539
- name: Install streamlit_folium dev dependencies
4640
run: |
4741
pip install -r streamlit_folium/tests/requirements.txt
@@ -64,6 +58,7 @@ jobs:
6458
- name: Test with pytest and retry flaky tests up to 3 times
6559
run: |
6660
cd streamlit_folium
61+
pip install -e . --no-deps --force-reinstall
6762
pytest tests/test_frontend.py --browser chromium -s --reruns 3 --junit-xml=test-results.xml
6863
6964
- name: Surface failing tests

0 commit comments

Comments
 (0)