Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/pyexcel/pyexcel-ods3
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Aug 30, 2017
2 parents 0a471aa + f63af98 commit fc220cd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_bug_fixes.py
Expand Up @@ -4,6 +4,9 @@
import psutil
import pyexcel as pe
from nose.tools import raises, eq_
from nose import SkipTest

IN_TRAVIS = 'TRAVIS' in os.environ


@raises(Exception)
Expand Down Expand Up @@ -100,5 +103,11 @@ def test_issue_83_ods_file_handle():
eq_(open_files_l1, open_files_l4)


def test_issue_23():
if not IN_TRAVIS:
raise SkipTest()
pe.get_book(url="https://github.com/pyexcel/pyexcel-ods3/raw/master/tests/fixtures/multilineods.ods"); # flake8: noqa


def get_fixtures(filename):
return os.path.join("tests", "fixtures", filename)

0 comments on commit fc220cd

Please sign in to comment.