gitextract_u1gfj0s8/ ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .landscape.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── Makefile │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── builder_test.py │ ├── discovery_test.py │ ├── django_example/ │ │ ├── app/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── migrations/ │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── app2/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── migrations/ │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── example/ │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ └── manage.py │ ├── django_test.py │ ├── doctest_example.py │ ├── testsuite.py │ └── vendor/ │ └── jenkins/ │ └── xunit-plugin/ │ ├── 14c6e39c38408b9ed6280361484a13c6f5becca7/ │ │ └── junit-10.xsd │ └── ae25da5089d4f94ac6c4669bf736e4d416cc4665/ │ └── junit-10.xsd ├── tox.ini └── xmlrunner/ ├── __init__.py ├── __main__.py ├── builder.py ├── extra/ │ ├── __init__.py │ ├── djangotestrunner.py │ └── xunit_plugin.py ├── result.py ├── runner.py └── unittest.py