From 5e54845d60b73785f37488e90b9f70770623a494 Mon Sep 17 00:00:00 2001 From: chfw Date: Thu, 24 Aug 2017 18:48:49 +0100 Subject: [PATCH] :ambulance: remove the f**k pdb in the test. --- pyexcel_ods/odsr.py | 1 - tests/test_bug_fixes.py | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) 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