Skip to content

Commit fc220cd

Browse files
committed
Merge branch 'master' of https://github.com/pyexcel/pyexcel-ods3
2 parents 0a471aa + f63af98 commit fc220cd

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
@raises(Exception)
@@ -100,5 +103,11 @@ def test_issue_83_ods_file_handle():
100103
eq_(open_files_l1, open_files_l4)
101104

102105

106+
def test_issue_23():
107+
if not IN_TRAVIS:
108+
raise SkipTest()
109+
pe.get_book(url="https://github.com/pyexcel/pyexcel-ods3/raw/master/tests/fixtures/multilineods.ods"); # flake8: noqa
110+
111+
103112
def get_fixtures(filename):
104113
return os.path.join("tests", "fixtures", filename)

0 commit comments

Comments
 (0)