Skip to content

Commit

Permalink
Ignore examples which uses datashader
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed May 18, 2024
1 parent abc35a8 commit 9788261
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import platform
import sys
from importlib.util import find_spec

import bokeh
import pandas as pd
Expand Down Expand Up @@ -62,6 +63,16 @@
"user_guide/Plotting_with_Matplotlib.ipynb",
]

# 2024-05: Numpy 2.0
if find_spec("datashader") is None:
collect_ignore_glob += [
"reference/elements/matplotlib/ImageStack.ipynb",
"reference/elements/plotly/ImageStack.ipynb",
"user_guide/15-Large_Data.ipynb",
"user_guide/Linked_Brushing.ipynb",
"user_guide/Network_Graphs.ipynb",
]


def pytest_runtest_makereport(item, call):
"""
Expand Down

0 comments on commit 9788261

Please sign in to comment.