diff --git a/pyexcel_ods/odsr.py b/pyexcel_ods/odsr.py index 21a3a35..4b191cf 100644 --- a/pyexcel_ods/odsr.py +++ b/pyexcel_ods/odsr.py @@ -110,7 +110,6 @@ class ODSBook(BookReader): # python 2 # Hei zipfile in odfpy would do a seek # but stream from urlib cannot do seek - import pdb; pdb.set_trace() file_stream = BytesIO(file_stream.read()) try: file_stream.seek(0) diff --git a/tests/test_bug_fixes.py b/tests/test_bug_fixes.py index c09e112..4bf4460 100644 --- a/tests/test_bug_fixes.py +++ b/tests/test_bug_fixes.py @@ -142,6 +142,8 @@ def test_pr_22(): def test_issue_23(): + if not IN_TRAVIS: + raise SkipTest() pe.get_book(url="https://github.com/pyexcel/pyexcel-ods/raw/master/tests/fixtures/white_space.ods"); # flake8: noqa