Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
disable unit test for ete on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jun 20, 2016
1 parent 2839d3e commit 5575325
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -42,7 +42,7 @@
from pyquickhelper.loghelper import fLOG
from pyquickhelper.pycode import get_temp_folder
from pyquickhelper.ipythonhelper import execute_notebook_list
from pyquickhelper.pycode import compare_module_version
from pyquickhelper.pycode import compare_module_version, is_travis_or_appveyor
from pyquickhelper.ipythonhelper import install_python_kernel_for_unittest
import IPython

Expand All @@ -59,6 +59,10 @@ def test_run_notebook_im2(self):
# notebooks are not converted into python 2.7, so not tested
return

if is_travis_or_appveyor() == "travis":
warnings.warn("issue with datashader.bokeh_ext, skipping")
return

if compare_module_version(IPython.__version__, "4.0.0") < 0:
# IPython is not recnt enough
return
Expand Down

0 comments on commit 5575325

Please sign in to comment.