Skip to content

Commit 2d587fe

Browse files
committed
WIP
1 parent bf57027 commit 2d587fe

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/test_streamlit_folium.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
run: |
4242
cd streamlit_folium
4343
pip install -e . --no-deps
44-
python -c "from folium.plugins import draw; print(draw.__file__)"
45-
python -c "from folium.plugins import draw; print(open(draw.__file__).read())"
4644
4745
- name: Install streamlit_folium dev dependencies
4846
run: |
@@ -55,18 +53,18 @@ jobs:
5553
- name: Install annotate-failures-plugin
5654
run: pip install pytest-github-actions-annotate-failures
5755

56+
- name: Install folium from source
57+
shell: bash -l {0}
58+
run: |
59+
python -m pip install -e . --no-deps --force-reinstall
60+
5861
- name: Extra debug step
5962
shell: bash -l {0}
6063
run: |
6164
cat folium/plugins/draw.py
6265
python -c "from folium.plugins import draw; print(draw.__file__)"
6366
python -c "from folium.plugins import draw; print(open(draw.__file__).read())"
6467
65-
- name: Install folium from source
66-
shell: bash -l {0}
67-
run: |
68-
python -m pip install -e . --no-deps --force-reinstall
69-
7068
- name: Test with pytest and retry flaky tests up to 3 times
7169
shell: bash -l {0}
7270
run: |

0 commit comments

Comments
 (0)