stem/test
Damian Johnson 4164c7a620 Replace all IOErrors with OSErrors
PEP 3151 deprecated IOError...

  https://www.python.org/dev/peps/pep-3151/#confusing-set-of-os-related-exceptions

Python 3.3 turned IOError into an OSError alias, so this commit shouldn't
impact our users...

  >>> raise OSError('boom')
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
  OSError: boom

  >>> raise IOError('boom')
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
  OSError: boom
2020-09-01 13:57:23 -07:00
..
integ Replace all IOErrors with OSErrors 2020-09-01 13:57:23 -07:00
unit Replace all IOErrors with OSErrors 2020-09-01 13:57:23 -07:00
__init__.py Update copyright dates for 2020 2020-01-02 11:38:39 -08:00
arguments.py Fix --test and --exclude-test arguments 2020-05-14 17:41:12 -07:00
mypy.ini Fix mypy issues 2020-05-10 17:25:05 -07:00
network.py Drop obsolete test.network mockey patch reference 2020-07-21 15:39:25 -07:00
output.py Tests errored with a '--log' argument 2020-02-10 15:05:17 -08:00
require.py Fix test.require.module 2020-07-19 15:02:43 -07:00
runner.py Use Synchronous for Controller 2020-07-14 17:31:45 -07:00
settings.cfg Move Synchronous to its own module 2020-07-25 16:08:59 -07:00
task.py Remove all trac links 2020-08-16 17:51:32 -07:00