diff --git a/.travis.yml b/.travis.yml index a3627fd..e84d8f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ cache: python: - "2.7" - "3.5" +# - "3.7" # Python 3.7 is not available on travis CI yet install: - pip install tox-travis - sh get_testdata.sh diff --git a/galvani/BioLogic.py b/galvani/BioLogic.py index e5bdb17..004f302 100644 --- a/galvani/BioLogic.py +++ b/galvani/BioLogic.py @@ -186,6 +186,8 @@ def VMPdata_dtype_from_colIDs(colIDs): dtype_dict['(Q-Qo)/mA.h'] = ' 40000 and ole_timestamp1 < 50000: ole_timestamp = ole_timestamp1 elif ole_timestamp2 > 40000 and ole_timestamp2 < 50000: ole_timestamp = ole_timestamp2 elif ole_timestamp3 > 40000 and ole_timestamp3 < 50000: ole_timestamp = ole_timestamp3 + elif ole_timestamp4 > 40000 and ole_timestamp4 < 50000: + ole_timestamp = ole_timestamp4 + else: raise ValueError("Could not find timestamp in the LOG module") diff --git a/tox.ini b/tox.ini index 09f70f4..bb55395 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py35 +envlist = py27,py35,py37 [testenv] deps=nose commands=nosetests