├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── pytestify ├── __init__.py ├── __main__.py ├── _ast_helpers.py ├── _main.py ├── _token_helpers.py └── fixes │ ├── __init__.py │ ├── asserts.py │ ├── base_class.py │ ├── funcs.py │ ├── imports.py │ └── method_name.py ├── setup.cfg ├── setup.py └── tests ├── fixes ├── test_asserts.py ├── test_base_class.py ├── test_funcs.py ├── test_imports.py └── test_method_name.py └── test_main.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/README.md -------------------------------------------------------------------------------- /pytestify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytestify/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/__main__.py -------------------------------------------------------------------------------- /pytestify/_ast_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/_ast_helpers.py -------------------------------------------------------------------------------- /pytestify/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/_main.py -------------------------------------------------------------------------------- /pytestify/_token_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/_token_helpers.py -------------------------------------------------------------------------------- /pytestify/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytestify/fixes/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/fixes/asserts.py -------------------------------------------------------------------------------- /pytestify/fixes/base_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/fixes/base_class.py -------------------------------------------------------------------------------- /pytestify/fixes/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/fixes/funcs.py -------------------------------------------------------------------------------- /pytestify/fixes/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/fixes/imports.py -------------------------------------------------------------------------------- /pytestify/fixes/method_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/pytestify/fixes/method_name.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/setup.py -------------------------------------------------------------------------------- /tests/fixes/test_asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/fixes/test_asserts.py -------------------------------------------------------------------------------- /tests/fixes/test_base_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/fixes/test_base_class.py -------------------------------------------------------------------------------- /tests/fixes/test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/fixes/test_funcs.py -------------------------------------------------------------------------------- /tests/fixes/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/fixes/test_imports.py -------------------------------------------------------------------------------- /tests/fixes/test_method_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/fixes/test_method_name.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannysepler/pytestify/HEAD/tests/test_main.py --------------------------------------------------------------------------------