🤝 merge

This commit is contained in:
chfw 2017-08-23 23:25:17 +01:00
commit faf28f2735
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():
@ -138,5 +141,11 @@ def test_pr_22():
eq_(data['Sheet1'][0][0], 'paragraph with tab(\t), space, \nnew line')
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)