Skip to content

Commit

Permalink
Ensure HoloViews tests are skipped if not available (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Oct 12, 2019
1 parent c517fa3 commit 8a9e20a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion panel/tests/pane/test_holoviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

import pytest
import numpy as np
import holoviews as hv

try:
import holoviews as hv
except:
hv = None

from bokeh.models import (Row as BkRow, Column as BkColumn, GlyphRenderer,
Scatter, Line, GridBox, Select as BkSelect,
Expand Down

0 comments on commit 8a9e20a

Please sign in to comment.