This commit is contained in:
chfw 2017-01-24 22:44:34 +00:00
parent aeb8d94941
commit 7774a01d18
3 changed files with 12 additions and 9 deletions

View File

@ -2,10 +2,11 @@
{%block custom_python_versions%}
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
{%endblock%}

View File

@ -3,11 +3,12 @@ language: python
notifications:
email: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then

View File

@ -81,5 +81,6 @@ def test_issue_13():
def test_issue_14():
# pyexcel issue 61
test_file = "issue_61.ods"
data = get_data(os.path.join("tests", "fixtures", test_file))
data = get_data(os.path.join("tests", "fixtures", test_file),
skip_empty_rows=True)
eq_(data['S-LMC'], [[u'aaa'], [0]])