This commit is contained in:
chfw 2017-08-23 23:24:05 +01:00
parent ab98fe8849
commit dbcfb77f1c
1 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,9 @@ import psutil
import pyexcel as pe
from pyexcel_ods import get_data, save_data
from nose.tools import raises, eq_
from nose import SkipTest
IN_TRAVIS = 'TRAVIS' in os.environ
def test_bug_fix_for_issue_1():
@ -131,5 +134,11 @@ def test_issue_83_ods_file_handle():
eq_(open_files_l1, open_files_l4)
def test_issue_20():
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
def get_fixtures(filename):
return os.path.join("tests", "fixtures", filename)