add test dependency

This commit is contained in:
chfw 2017-06-01 22:44:40 +01:00
parent b896b3979a
commit cafad5cbfa
3 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{% extends 'tests/requirements.txt.jj2' %}
{%block extras %}
psutil
pyexcel
pyexcel-xls
{%endblock%}

View File

@ -3,5 +3,6 @@ mock;python_version<"3"
codecov
coverage
flake8
psutil
pyexcel
pyexcel-xls

View File

@ -19,10 +19,10 @@ class TestNativeODSWriter:
reader = Reader()
reader.open(self.testfile)
content = reader.read_all()
reader.close()
for key in content.keys():
content[key] = list(content[key])
assert content == self.content
reader.close()
def tearDown(self):
if os.path.exists(self.testfile):