Skip to content

Commit f63af98

Browse files
committed
☔ reproduce #12
1 parent 6a73b88 commit f63af98

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/test_bug_fixes.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import psutil
55
import pyexcel as pe
66
from nose.tools import raises, eq_
7+
from nose import SkipTest
8+
9+
IN_TRAVIS = 'TRAVIS' in os.environ
710

811

912
def test_date_util_parse():
@@ -125,5 +128,11 @@ def test_issue_83_ods_file_handle():
125128
eq_(open_files_l1, open_files_l4)
126129

127130

131+
def test_issue_23():
132+
if not IN_TRAVIS:
133+
raise SkipTest()
134+
pe.get_book(url="https://github.com/pyexcel/pyexcel-ods3/raw/master/tests/fixtures/multilineods.ods"); # flake8: noqa
135+
136+
128137
def get_fixtures(filename):
129138
return os.path.join("tests", "fixtures", filename)

0 commit comments

Comments
 (0)