Skip to content

Commit

Permalink
ci: remove again geopandas pin and disable flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
binste committed May 18, 2024
1 parent 9c5b17d commit f85fd0d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dev = [
"pandas-stubs",
"types-jsonschema",
"types-setuptools",
"geopandas<=0.14.3",
"geopandas",
]
doc = [
"sphinx",
Expand Down
10 changes: 8 additions & 2 deletions tests/examples_arguments_syntax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,16 @@ def iter_examples_arguments_syntax():
examples_arguments_syntax_dir = os.path.abspath(os.path.dirname(__file__))
for filename in os.listdir(examples_arguments_syntax_dir):
name, ext = os.path.splitext(filename)
if name.startswith("_") or ext != ".py":
if (
name.startswith("_")
or ext != ".py"
# Temporarily skip this test until https://github.com/vega/altair/issues/3418
# is fixed
or name == "interval_selection_map_quakes"
):
continue
yield {
"name": name,
"filename": os.path.join(examples_arguments_syntax_dir, filename),
"use_svg": name in SVG_EXAMPLES
"use_svg": name in SVG_EXAMPLES,
}
10 changes: 8 additions & 2 deletions tests/examples_methods_syntax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ def iter_examples_methods_syntax():
examples_methods_syntax_dir = os.path.abspath(os.path.dirname(__file__))
for filename in os.listdir(examples_methods_syntax_dir):
name, ext = os.path.splitext(filename)
if name.startswith("_") or ext != ".py":
if (
name.startswith("_")
or ext != ".py"
# Temporarily skip this test until https://github.com/vega/altair/issues/3418
# is fixed
or name == "interval_selection_map_quakes"
):
continue
yield {
"name": name,
"filename": os.path.join(examples_methods_syntax_dir, filename),
"use_svg": name in SVG_EXAMPLES
"use_svg": name in SVG_EXAMPLES,
}

0 comments on commit f85fd0d

Please sign in to comment.