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.
2 parents 0a471aa + f63af98 commit fc220cdCopy full SHA for fc220cd
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
@raises(Exception)
@@ -100,5 +103,11 @@ def test_issue_83_ods_file_handle():
100
103
eq_(open_files_l1, open_files_l4)
101
104
102
105
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
112
def get_fixtures(filename):
113
return os.path.join("tests", "fixtures", filename)
0 commit comments