From 1605d524d8deac126563632be84aa4362185f819 Mon Sep 17 00:00:00 2001 From: Zachary Blackwood Date: Thu, 26 Oct 2023 14:04:50 -0400 Subject: [PATCH] add geopandas --- requirements.txt | 3 ++- tests/requirements.txt | 3 ++- tests/test_frontend.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 98203e9..c750f14 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ streamlit>=1.13.0 folium>=0.13 jinja2 -branca \ No newline at end of file +branca +geopandas \ No newline at end of file diff --git a/tests/requirements.txt b/tests/requirements.txt index 7d9a27e..8993eab 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -2,4 +2,5 @@ streamlit>1.11.1 pytest>=7.1.2 folium>=0.13 pytest-playwright -pytest-rerunfailures \ No newline at end of file +pytest-rerunfailures +geopandas \ No newline at end of file diff --git a/tests/test_frontend.py b/tests/test_frontend.py index df819a3..d584f82 100644 --- a/tests/test_frontend.py +++ b/tests/test_frontend.py @@ -238,5 +238,6 @@ def test_responsiveness(page: Page): def test_geojson_styles(page: Page): page.get_by_role("link", name="geojson styles").click() + page.get_by_role("button", name="Show generated code").click() expect(page.get_by_text('"fillOpacity"')).to_be_visible()