Skip to content

Commit

Permalink
adds tests extras
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt authored and philippjfr committed Feb 17, 2022
1 parent 90240eb commit 496120b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
shell: bash -l {0}
env:
DESC: "Python ${{ matrix.python-version }} tests"
HV_REQUIREMENTS: "unit_tests"
PYTHON_VERSION: ${{ matrix.python-version }}
CHANS_DEV: "-c pyviz/label/dev -c conda-forge -c nodefaults"
CHANS: "-c pyviz -c conda-forge -c nodefaults"
Expand Down Expand Up @@ -61,7 +60,7 @@ jobs:
eval "$(conda shell.bash hook)"
conda activate test-environment
conda list
doit develop_install ${{ env.CHANS_DEV}} -o examples -o recommended
doit develop_install ${{ env.CHANS_DEV}} -o tests -o examples -o recommended
# Temporary step for Mac only due to develop_install failing (reason not yet found)
- name: doit develop_install
Expand All @@ -70,7 +69,7 @@ jobs:
eval "$(conda shell.bash hook)"
conda activate test-environment
conda list
doit develop_install ${{ env.CHANS_DEV}} -o examples -o recommended || echo "Keep going"
doit develop_install ${{ env.CHANS_DEV}} -o tests -o examples -o recommended || echo "Keep going"
pip install --no-deps --no-build-isolation -e .
- name: download test data
Expand Down
2 changes: 1 addition & 1 deletion geoviews/plotting/bokeh/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class GeoPlot(ProjectionPlot, ElementPlot):
"""

default_tools = param.List(default=['save', 'pan',
WheelZoomTool(zoom_on_axis=False}),
WheelZoomTool(zoom_on_axis=False),
BoxZoomTool(match_aspect=True), 'reset'],
doc="A list of plugin tools to use on the plot.")

Expand Down

0 comments on commit 496120b

Please sign in to comment.