##// END OF EJS Templates
Statically type OInfo. (#13973)...
Statically type OInfo. (#13973) In view of working with #13860, some cleanup inspect to be properly typed, and using stricter datastructure. Instead of dict we now use dataclasses, this will make sure that fields type and access can be stricter and verified not only at runtime, but by mypy

File last commit:

r27925:6938ae12
r28166:29b451fc merge
Show More
pytest.ini
40 lines | 1.4 KiB | text/x-ini | IniLexer
Matthias Bussonnier
Also run test with Pytest....
r25117 [pytest]
Thomas A Caswell
MNT: update pytest.ini to work with pytest > 3
r25420 addopts = --durations=10
Nikita Kniazev
Pytest ipdoctest plugin...
r26996 -p IPython.testing.plugin.pytest_ipdoctest --ipdoctest-modules
--ignore=docs
--ignore=examples
--ignore=htmlcov
--ignore=ipython_kernel
--ignore=ipython_parallel
--ignore=results
--ignore=tmp
--ignore=tools
--ignore=traitlets
--ignore=IPython/core/tests/daft_extension
--ignore=IPython/sphinxext
--ignore=IPython/terminal/pt_inputhooks
--ignore=IPython/__main__.py
--ignore=IPython/external/qt_for_kernel.py
--ignore=IPython/html/widgets/widget_link.py
--ignore=IPython/html/widgets/widget_output.py
--ignore=IPython/terminal/console.py
--ignore=IPython/utils/_process_cli.py
--ignore=IPython/utils/_process_posix.py
--ignore=IPython/utils/_process_win32.py
--ignore=IPython/utils/_process_win32_controller.py
--ignore=IPython/utils/daemonize.py
--ignore=IPython/utils/eventful.py
Nikita Kniazev
Suppress bunch of self-deprecation warnings...
r27009
--ignore=IPython/kernel
--ignore=IPython/consoleapp.py
--ignore=IPython/core/inputsplitter.py
--ignore=IPython/lib/kernel.py
--ignore=IPython/utils/jsonutil.py
--ignore=IPython/utils/localinterfaces.py
--ignore=IPython/utils/log.py
--ignore=IPython/utils/signatures.py
--ignore=IPython/utils/traitlets.py
Nikita Kniazev
Deprecate `IPython.utils.version`...
r27086 --ignore=IPython/utils/version.py
Nikita Kniazev
Pytest ipdoctest plugin...
r26996 doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
ipdoctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
Matthias Bussonnier
fix pytest
r27638 asyncio_mode = strict