We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a73b88 commit f63af98Copy full SHA for f63af98
tests/test_bug_fixes.py
@@ -4,6 +4,9 @@
4
import psutil
5
import pyexcel as pe
6
from nose.tools import raises, eq_
7
+from nose import SkipTest
8
+
9
+IN_TRAVIS = 'TRAVIS' in os.environ
10
11
12
def test_date_util_parse():
@@ -125,5 +128,11 @@ def test_issue_83_ods_file_handle():
125
128
eq_(open_files_l1, open_files_l4)
126
129
127
130
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
137
def get_fixtures(filename):
138
return os.path.join("tests", "fixtures", filename)
0 commit comments