├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .project ├── .pydevproject ├── .readthedocs.yml ├── CHANGELOG.rst ├── HOWTORELEASE.rst ├── LICENSE ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── _static │ ├── button.png │ └── find_files_dialog.png ├── changelog.rst ├── conf.py ├── debugging.rst ├── index.rst ├── intro.rst ├── logging.rst ├── make.bat ├── modeltester.rst ├── note_dialogs.rst ├── qapplication.rst ├── reference.rst ├── requirements.txt ├── signals.rst ├── troubleshooting.rst ├── tutorial.rst ├── virtual_methods.rst ├── wait_callback.rst └── wait_until.rst ├── mypy.ini ├── pytest.ini ├── requirements.txt ├── setup.py ├── src └── pytestqt │ ├── __init__.py │ ├── exceptions.py │ ├── logging.py │ ├── modeltest.py │ ├── plugin.py │ ├── py.typed │ ├── qt_compat.py │ ├── qtbot.py │ ├── utils.py │ └── wait_signal.py ├── tests ├── conftest.py ├── test_basics.py ├── test_exceptions.py ├── test_logging.py ├── test_modeltest.py ├── test_qtbot_pep8_aliases.py ├── test_qtest_proxies.py ├── test_screenshot.py ├── test_wait_signal.py └── test_wait_until.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.rst merge=union 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [The-Compiler, nicoddemus] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.pydevproject -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /HOWTORELEASE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/HOWTORELEASE.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/_static/button.png -------------------------------------------------------------------------------- /docs/_static/find_files_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/_static/find_files_dialog.png -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/logging.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modeltester.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/modeltester.rst -------------------------------------------------------------------------------- /docs/note_dialogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/note_dialogs.rst -------------------------------------------------------------------------------- /docs/qapplication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/qapplication.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/signals.rst -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/troubleshooting.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/virtual_methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/virtual_methods.rst -------------------------------------------------------------------------------- /docs/wait_callback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/wait_callback.rst -------------------------------------------------------------------------------- /docs/wait_until.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/docs/wait_until.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/mypy.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/setup.py -------------------------------------------------------------------------------- /src/pytestqt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/__init__.py -------------------------------------------------------------------------------- /src/pytestqt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/exceptions.py -------------------------------------------------------------------------------- /src/pytestqt/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/logging.py -------------------------------------------------------------------------------- /src/pytestqt/modeltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/modeltest.py -------------------------------------------------------------------------------- /src/pytestqt/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/plugin.py -------------------------------------------------------------------------------- /src/pytestqt/py.typed: -------------------------------------------------------------------------------- 1 | partial 2 | -------------------------------------------------------------------------------- /src/pytestqt/qt_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/qt_compat.py -------------------------------------------------------------------------------- /src/pytestqt/qtbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/qtbot.py -------------------------------------------------------------------------------- /src/pytestqt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/utils.py -------------------------------------------------------------------------------- /src/pytestqt/wait_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/src/pytestqt/wait_signal.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_basics.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_modeltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_modeltest.py -------------------------------------------------------------------------------- /tests/test_qtbot_pep8_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_qtbot_pep8_aliases.py -------------------------------------------------------------------------------- /tests/test_qtest_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_qtest_proxies.py -------------------------------------------------------------------------------- /tests/test_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_screenshot.py -------------------------------------------------------------------------------- /tests/test_wait_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_wait_signal.py -------------------------------------------------------------------------------- /tests/test_wait_until.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tests/test_wait_until.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-qt/HEAD/tox.ini --------------------------------------------------------------------------------