├── .circleci └── config.yml ├── .coveralls.yml ├── .editorconfig ├── .gitignore ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── VERSION ├── Vagrantfile ├── common_setup.py ├── foreach.sh ├── img ├── linux.png └── windows.png ├── install.sh ├── pytest-devpi-server ├── README.md ├── _pytest_devpi_server │ └── __init__.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ └── test_devpi_server.py ├── pytest-fixture-config ├── README.md ├── pytest_fixture_config.py ├── setup.cfg ├── setup.py └── tests │ └── unit │ └── test_fixture_config.py ├── pytest-git ├── README.md ├── pytest_git.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ └── test_git.py ├── pytest-listener ├── README.md ├── pytest_listener.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ └── test_listener.py ├── pytest-profiling ├── README.md ├── docs │ └── static │ │ └── profile_combined.svg ├── pytest_profiling.py ├── setup.cfg ├── setup.py └── tests │ ├── integration │ ├── profile │ │ └── tests │ │ │ └── unit │ │ │ ├── test_chdir.py │ │ │ ├── test_example.py │ │ │ └── test_long_name.py │ └── test_profile_integration.py │ └── unit │ └── test_profile.py ├── pytest-pyramid-server ├── .gitignore ├── README.md ├── pyramid_server_test.py ├── pytest_pyramid_server.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ ├── config │ └── testing.ini │ └── test_pyramid_server.py ├── pytest-qt-app ├── README.md ├── pytest_qt_app.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ └── test_q_application.py ├── pytest-server-fixtures ├── README.md ├── pytest_server_fixtures │ ├── __init__.py │ ├── base.py │ ├── base2.py │ ├── http.py │ ├── httpd.py │ ├── jenkins.py │ ├── mongo.py │ ├── postgres.py │ ├── redis.py │ ├── s3.py │ ├── serverclass │ │ ├── __init__.py │ │ ├── common.py │ │ ├── docker.py │ │ ├── kubernetes.py │ │ └── thread.py │ ├── util.py │ └── xvfb.py ├── setup.cfg ├── setup.py └── tests │ ├── integration │ ├── jenkins_plugins │ │ ├── jython.hpi │ │ └── notification.hpi │ ├── test_httpd_proxy_server.py │ ├── test_jenkins_server.py │ ├── test_mongo_server.py │ ├── test_postgres.py │ ├── test_redis_server.py │ ├── test_s3_server.py │ └── test_xvfb_server.py │ └── unit │ ├── serverclass │ ├── test_docker_unit.py │ ├── test_kubernetes_unit.py │ └── test_thread_unit.py │ ├── test_server_unit.py │ └── test_server_v2_unit.py ├── pytest-shutil ├── README.md ├── pytest_shutil │ ├── __init__.py │ ├── cmdline.py │ ├── env.py │ ├── run.py │ └── workspace.py ├── setup.cfg ├── setup.py └── tests │ ├── integration │ ├── test_cmdline_integration.py │ ├── test_env_integration.py │ ├── test_run_integration.py │ └── test_workspace_integration.py │ └── unit │ ├── test_cmdline.py │ ├── test_env.py │ └── test_run.py ├── pytest-svn ├── README.md ├── pytest_svn.py ├── setup.cfg ├── setup.py └── tests │ └── integration │ └── test_svn.py ├── pytest-verbose-parametrize ├── README.md ├── pytest_verbose_parametrize.py ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── integration │ ├── __init__.py │ ├── parametrize_ids │ │ └── tests │ │ │ └── unit │ │ │ ├── test_duplicates.py │ │ │ ├── test_example.py │ │ │ ├── test_long_ids.py │ │ │ ├── test_non_parametrized.py │ │ │ └── test_parametrized.py │ └── test_verbose_parametrize.py │ └── unit │ ├── __init__.py │ └── test_verbose_parametrize.py ├── pytest-virtualenv ├── README.md ├── pytest_virtualenv.py ├── setup.cfg ├── setup.py └── tests │ ├── integration │ └── test_tmpvirtualenv.py │ └── unit │ ├── test_package_entry.py │ └── test_venv.py └── pytest-webdriver ├── README.md ├── pytest_webdriver.py ├── setup.cfg ├── setup.py └── tests ├── integration └── test_integration.py └── unit └── test_webdriver.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: circle-ci 2 | parallel: true 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.1 2 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/Vagrantfile -------------------------------------------------------------------------------- /common_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/common_setup.py -------------------------------------------------------------------------------- /foreach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/foreach.sh -------------------------------------------------------------------------------- /img/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/img/linux.png -------------------------------------------------------------------------------- /img/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/img/windows.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/install.sh -------------------------------------------------------------------------------- /pytest-devpi-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-devpi-server/README.md -------------------------------------------------------------------------------- /pytest-devpi-server/_pytest_devpi_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-devpi-server/_pytest_devpi_server/__init__.py -------------------------------------------------------------------------------- /pytest-devpi-server/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-devpi-server/setup.cfg -------------------------------------------------------------------------------- /pytest-devpi-server/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-devpi-server/setup.py -------------------------------------------------------------------------------- /pytest-devpi-server/tests/integration/test_devpi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-devpi-server/tests/integration/test_devpi_server.py -------------------------------------------------------------------------------- /pytest-fixture-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-fixture-config/README.md -------------------------------------------------------------------------------- /pytest-fixture-config/pytest_fixture_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-fixture-config/pytest_fixture_config.py -------------------------------------------------------------------------------- /pytest-fixture-config/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-fixture-config/setup.cfg -------------------------------------------------------------------------------- /pytest-fixture-config/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-fixture-config/setup.py -------------------------------------------------------------------------------- /pytest-fixture-config/tests/unit/test_fixture_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-fixture-config/tests/unit/test_fixture_config.py -------------------------------------------------------------------------------- /pytest-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-git/README.md -------------------------------------------------------------------------------- /pytest-git/pytest_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-git/pytest_git.py -------------------------------------------------------------------------------- /pytest-git/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-git/setup.cfg -------------------------------------------------------------------------------- /pytest-git/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-git/setup.py -------------------------------------------------------------------------------- /pytest-git/tests/integration/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-git/tests/integration/test_git.py -------------------------------------------------------------------------------- /pytest-listener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-listener/README.md -------------------------------------------------------------------------------- /pytest-listener/pytest_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-listener/pytest_listener.py -------------------------------------------------------------------------------- /pytest-listener/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-listener/setup.cfg -------------------------------------------------------------------------------- /pytest-listener/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-listener/setup.py -------------------------------------------------------------------------------- /pytest-listener/tests/integration/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-listener/tests/integration/test_listener.py -------------------------------------------------------------------------------- /pytest-profiling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/README.md -------------------------------------------------------------------------------- /pytest-profiling/docs/static/profile_combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/docs/static/profile_combined.svg -------------------------------------------------------------------------------- /pytest-profiling/pytest_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/pytest_profiling.py -------------------------------------------------------------------------------- /pytest-profiling/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/setup.cfg -------------------------------------------------------------------------------- /pytest-profiling/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/setup.py -------------------------------------------------------------------------------- /pytest-profiling/tests/integration/profile/tests/unit/test_chdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/tests/integration/profile/tests/unit/test_chdir.py -------------------------------------------------------------------------------- /pytest-profiling/tests/integration/profile/tests/unit/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/tests/integration/profile/tests/unit/test_example.py -------------------------------------------------------------------------------- /pytest-profiling/tests/integration/profile/tests/unit/test_long_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/tests/integration/profile/tests/unit/test_long_name.py -------------------------------------------------------------------------------- /pytest-profiling/tests/integration/test_profile_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/tests/integration/test_profile_integration.py -------------------------------------------------------------------------------- /pytest-profiling/tests/unit/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-profiling/tests/unit/test_profile.py -------------------------------------------------------------------------------- /pytest-pyramid-server/.gitignore: -------------------------------------------------------------------------------- 1 | /vx/ 2 | -------------------------------------------------------------------------------- /pytest-pyramid-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/README.md -------------------------------------------------------------------------------- /pytest-pyramid-server/pyramid_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/pyramid_server_test.py -------------------------------------------------------------------------------- /pytest-pyramid-server/pytest_pyramid_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/pytest_pyramid_server.py -------------------------------------------------------------------------------- /pytest-pyramid-server/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/setup.cfg -------------------------------------------------------------------------------- /pytest-pyramid-server/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/setup.py -------------------------------------------------------------------------------- /pytest-pyramid-server/tests/integration/config/testing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/tests/integration/config/testing.ini -------------------------------------------------------------------------------- /pytest-pyramid-server/tests/integration/test_pyramid_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-pyramid-server/tests/integration/test_pyramid_server.py -------------------------------------------------------------------------------- /pytest-qt-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-qt-app/README.md -------------------------------------------------------------------------------- /pytest-qt-app/pytest_qt_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-qt-app/pytest_qt_app.py -------------------------------------------------------------------------------- /pytest-qt-app/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-qt-app/setup.cfg -------------------------------------------------------------------------------- /pytest-qt-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-qt-app/setup.py -------------------------------------------------------------------------------- /pytest-qt-app/tests/integration/test_q_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-qt-app/tests/integration/test_q_application.py -------------------------------------------------------------------------------- /pytest-server-fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/README.md -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/__init__.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/base.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/base2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/base2.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/http.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/httpd.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/jenkins.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/mongo.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/postgres.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/redis.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/s3.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/serverclass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/serverclass/__init__.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/serverclass/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/serverclass/common.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/serverclass/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/serverclass/docker.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/serverclass/kubernetes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/serverclass/kubernetes.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/serverclass/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/serverclass/thread.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/util.py -------------------------------------------------------------------------------- /pytest-server-fixtures/pytest_server_fixtures/xvfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/pytest_server_fixtures/xvfb.py -------------------------------------------------------------------------------- /pytest-server-fixtures/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/setup.cfg -------------------------------------------------------------------------------- /pytest-server-fixtures/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/setup.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/jenkins_plugins/jython.hpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/jenkins_plugins/jython.hpi -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/jenkins_plugins/notification.hpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/jenkins_plugins/notification.hpi -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_httpd_proxy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_httpd_proxy_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_jenkins_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_jenkins_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_mongo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_mongo_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_postgres.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_redis_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_redis_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_s3_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_s3_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/integration/test_xvfb_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/integration/test_xvfb_server.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/unit/serverclass/test_docker_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/unit/serverclass/test_docker_unit.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/unit/serverclass/test_kubernetes_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/unit/serverclass/test_kubernetes_unit.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/unit/serverclass/test_thread_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/unit/serverclass/test_thread_unit.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/unit/test_server_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/unit/test_server_unit.py -------------------------------------------------------------------------------- /pytest-server-fixtures/tests/unit/test_server_v2_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-server-fixtures/tests/unit/test_server_v2_unit.py -------------------------------------------------------------------------------- /pytest-shutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/README.md -------------------------------------------------------------------------------- /pytest-shutil/pytest_shutil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-shutil/pytest_shutil/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/pytest_shutil/cmdline.py -------------------------------------------------------------------------------- /pytest-shutil/pytest_shutil/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/pytest_shutil/env.py -------------------------------------------------------------------------------- /pytest-shutil/pytest_shutil/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/pytest_shutil/run.py -------------------------------------------------------------------------------- /pytest-shutil/pytest_shutil/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/pytest_shutil/workspace.py -------------------------------------------------------------------------------- /pytest-shutil/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/setup.cfg -------------------------------------------------------------------------------- /pytest-shutil/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/setup.py -------------------------------------------------------------------------------- /pytest-shutil/tests/integration/test_cmdline_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/integration/test_cmdline_integration.py -------------------------------------------------------------------------------- /pytest-shutil/tests/integration/test_env_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/integration/test_env_integration.py -------------------------------------------------------------------------------- /pytest-shutil/tests/integration/test_run_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/integration/test_run_integration.py -------------------------------------------------------------------------------- /pytest-shutil/tests/integration/test_workspace_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/integration/test_workspace_integration.py -------------------------------------------------------------------------------- /pytest-shutil/tests/unit/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/unit/test_cmdline.py -------------------------------------------------------------------------------- /pytest-shutil/tests/unit/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/unit/test_env.py -------------------------------------------------------------------------------- /pytest-shutil/tests/unit/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-shutil/tests/unit/test_run.py -------------------------------------------------------------------------------- /pytest-svn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-svn/README.md -------------------------------------------------------------------------------- /pytest-svn/pytest_svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-svn/pytest_svn.py -------------------------------------------------------------------------------- /pytest-svn/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-svn/setup.cfg -------------------------------------------------------------------------------- /pytest-svn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-svn/setup.py -------------------------------------------------------------------------------- /pytest-svn/tests/integration/test_svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-svn/tests/integration/test_svn.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/README.md -------------------------------------------------------------------------------- /pytest-verbose-parametrize/pytest_verbose_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/pytest_verbose_parametrize.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/setup.cfg -------------------------------------------------------------------------------- /pytest-verbose-parametrize/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/setup.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_duplicates.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_example.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_long_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_long_ids.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_non_parametrized.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def test_bar(): # unparametrized 4 | pass 5 | -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_parametrized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/integration/parametrize_ids/tests/unit/test_parametrized.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/integration/test_verbose_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/integration/test_verbose_parametrize.py -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-verbose-parametrize/tests/unit/test_verbose_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-verbose-parametrize/tests/unit/test_verbose_parametrize.py -------------------------------------------------------------------------------- /pytest-virtualenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/README.md -------------------------------------------------------------------------------- /pytest-virtualenv/pytest_virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/pytest_virtualenv.py -------------------------------------------------------------------------------- /pytest-virtualenv/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/setup.cfg -------------------------------------------------------------------------------- /pytest-virtualenv/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/setup.py -------------------------------------------------------------------------------- /pytest-virtualenv/tests/integration/test_tmpvirtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/tests/integration/test_tmpvirtualenv.py -------------------------------------------------------------------------------- /pytest-virtualenv/tests/unit/test_package_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/tests/unit/test_package_entry.py -------------------------------------------------------------------------------- /pytest-virtualenv/tests/unit/test_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-virtualenv/tests/unit/test_venv.py -------------------------------------------------------------------------------- /pytest-webdriver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/README.md -------------------------------------------------------------------------------- /pytest-webdriver/pytest_webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/pytest_webdriver.py -------------------------------------------------------------------------------- /pytest-webdriver/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/setup.cfg -------------------------------------------------------------------------------- /pytest-webdriver/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/setup.py -------------------------------------------------------------------------------- /pytest-webdriver/tests/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/tests/integration/test_integration.py -------------------------------------------------------------------------------- /pytest-webdriver/tests/unit/test_webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/man-group/pytest-plugins/HEAD/pytest-webdriver/tests/unit/test_webdriver.py --------------------------------------------------------------------------------