gitextract_2sbi1wsi/ ├── .circleci/ │ └── config.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── env.yml │ ├── requirements.txt │ └── sources/ │ ├── Makefile │ ├── changelog.rst │ ├── conf.py │ ├── configuration.rst │ ├── contributing.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── make.bat │ ├── operating.rst │ ├── remote.rst │ └── run.rst ├── examples/ │ ├── pkg1/ │ │ ├── __init__.py │ │ ├── test_mod1.py │ │ └── test_mod2.py │ ├── pkg2/ │ │ ├── __init__.py │ │ └── test_mod_a.py │ ├── pkg3/ │ │ ├── __init__.py │ │ └── test_mod_cl.py │ ├── pkg4/ │ │ ├── __init__.py │ │ └── test_mod_a.py │ └── pkg5/ │ ├── __init__.py │ ├── doctest.py │ └── test_special_pytest.py ├── pyproject.toml ├── pytest_monitor/ │ ├── __init__.py │ ├── handler.py │ ├── pytest_monitor.py │ ├── session.py │ └── sys_utils.py ├── requirements.dev.txt ├── requirements.txt ├── tests/ │ ├── conftest.py │ ├── test_monitor.py │ ├── test_monitor_component.py │ ├── test_monitor_context.py │ └── test_monitor_in_ci.py └── tox.ini