Skip to content

Commit ff0f09a

Browse files
committed
break tests
1 parent ebcd6df commit ff0f09a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test_geopandas.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- name: Checkout Folium
1515
uses: actions/checkout@v4
1616
with:
17+
# needed to get the correct version number for Folium
1718
fetch-depth: 0
1819
path: folium
1920

@@ -40,10 +41,8 @@ jobs:
4041
run: |
4142
cd folium
4243
python -m pip install -e . --no-deps --force-reinstall
43-
python -c "import os; f='folium/_version.py'; print(open(f).read() if os.path.exists(f) else f'File {f} does not exist')"
44-
python -c "import folium; print(folium.__version__)"
4544
4645
- name: Run Geopandas tests
4746
run: |
4847
cd geopandas
49-
pytest -v -r a -n auto --color=yes geopandas/tests/test_explore.py
48+
pytest geopandas/tests/test_explore.py

folium/folium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def __init__(
259259
no_touch: bool = False,
260260
disable_3d: bool = False,
261261
png_enabled: bool = False,
262-
zoom_control: Union[bool, str] = True,
262+
zoom_control: Union[bool, str] = False,
263263
font_size: str = "1rem",
264264
**kwargs: TypeJsonValue,
265265
):

0 commit comments

Comments
 (0)