Browse Source

Merge branch 'travis-python3.5'

https://github.com/fphammerle/freesurfer-volume-reader/pull/1/files
Fabian Peter Hammerle 5 years ago
parent
commit
231639e1e1
2 changed files with 2 additions and 1 deletions
  1. 1 0
      .travis.yml
  2. 1 1
      tests/hippocampus_test.py

+ 1 - 0
.travis.yml

@@ -1,6 +1,7 @@
 language: python
 
 python:
+- 3.5
 - 3.6
 - 3.6-dev
 - 3.7

+ 1 - 1
tests/hippocampus_test.py

@@ -126,7 +126,7 @@ def test_parse_hippocampal_volume_file_path_invalid(volume_file_path):
      })),
 ])
 def test_read_hippocampal_volume_file_dataframe(volume_file_path, expected_dataframe):
-    pandas.util.testing.assert_frame_equal(
+    assert_volume_frames_equal(
         left=expected_dataframe,
         right=freesurfer_volume_reader.read_hippocampal_volume_file_dataframe(
             volume_file_path=volume_file_path),