Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

test_axonio.py 787 B

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.axonio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import
  7. import sys
  8. try:
  9. import unittest2 as unittest
  10. except ImportError:
  11. import unittest
  12. from neo.io import AxonIO
  13. from neo.test.iotest.common_io_test import BaseTestIO
  14. class TestAxonIO(BaseTestIO, unittest.TestCase):
  15. files_to_test = ['File_axon_1.abf',
  16. 'File_axon_2.abf',
  17. 'File_axon_3.abf',
  18. 'File_axon_4.abf',
  19. 'File_axon_5.abf',
  20. 'File_axon_6.abf',
  21. 'File_axon_7.abf',
  22. ]
  23. files_to_download = files_to_test
  24. ioclass = AxonIO
  25. if __name__ == "__main__":
  26. unittest.main()