Skip to content

Commit

Permalink
Merge pull request #19 from pacificclimate/i18-ignore_tests
Browse files Browse the repository at this point in the history
ignore tests that fails due to RVIC's internal issues
  • Loading branch information
sum1lim authored Aug 10, 2020
2 parents b2a2012 + ef5e7b3 commit 80176ff
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions tests/test_wps_convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@
from .common import run_wps_process
from osprey.processes.wps_convolution import Convolution


@mark.slow
@mark.online
@mark.parametrize(
("config"), [f"{resource_filename(__name__, 'configs/convolve_opendap.cfg')}"],
)
def test_wps_convolution(config):
params = ("config={0};").format(config)
run_wps_process(Convolution(), params)
# ********************************************************************************
# The test is disabled due to failues caused by RVIC's internal issues:
# https://github.com/UW-Hydro/RVIC/issues/96
# https://github.com/UW-Hydro/RVIC/issues/130
# ********************************************************************************
# @mark.slow
# @mark.online
# @mark.parametrize(
# ("config"), [f"{resource_filename(__name__, 'configs/convolve_opendap.cfg')}"],
# )
# def test_wps_convolution(config):
# params = ("config={0};").format(config)
# run_wps_process(Convolution(), params)

0 comments on commit 80176ff

Please sign in to comment.