├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── dependabot-changenote.yml │ ├── pre-commit-update.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── changes ├── 40.misc.rst └── template.md ├── pyproject.toml ├── pytest_tldr.py ├── tests ├── conftest.py ├── test_collection.py ├── test_plugins.py ├── test_pytest.py └── test_unittest.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-changenote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/workflows/dependabot-changenote.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/workflows/pre-commit-update.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/README.md -------------------------------------------------------------------------------- /changes/40.misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/changes/40.misc.rst -------------------------------------------------------------------------------- /changes/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/changes/template.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_tldr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/pytest_tldr.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tests/test_collection.py -------------------------------------------------------------------------------- /tests/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tests/test_plugins.py -------------------------------------------------------------------------------- /tests/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tests/test_pytest.py -------------------------------------------------------------------------------- /tests/test_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tests/test_unittest.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/pytest-tldr/HEAD/tox.ini --------------------------------------------------------------------------------