├── .github └── workflows │ ├── ci.yml │ ├── release-test.yml │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PythonTestingWithGreen.md ├── README-pypi.rst ├── README.md ├── cli-options.txt ├── example └── proj │ ├── __init__.py │ ├── foo.py │ └── test │ ├── __init__.py │ ├── subpkg │ ├── __init__.py │ ├── bar.py │ └── test │ │ ├── __init__.py │ │ └── test_bar.py │ └── test_foo.py ├── g ├── green ├── VERSION ├── __init__.py ├── __main__.py ├── cmdline.py ├── command.py ├── config.py ├── djangorunner.py ├── examples.py ├── exceptions.py ├── junit.py ├── loader.py ├── output.py ├── process.py ├── result.py ├── runner.py ├── shell_completion.sh ├── suite.py ├── test │ ├── __init__.py │ ├── test_cmdline.py │ ├── test_command.py │ ├── test_config.py │ ├── test_djangorunner.py │ ├── test_integration.py │ ├── test_junit.py │ ├── test_load_tests.py │ ├── test_loader.py │ ├── test_output.py │ ├── test_process.py │ ├── test_result.py │ ├── test_runner.py │ ├── test_suite.py │ ├── test_version.py │ └── test_windows.py └── version.py ├── img ├── GreenCourseImagePromoStripe.png └── screenshot.png ├── pyproject.toml ├── release.md ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── test_versions /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/.github/workflows/release-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "black" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/Makefile -------------------------------------------------------------------------------- /PythonTestingWithGreen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/PythonTestingWithGreen.md -------------------------------------------------------------------------------- /README-pypi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/README-pypi.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/README.md -------------------------------------------------------------------------------- /cli-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/cli-options.txt -------------------------------------------------------------------------------- /example/proj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/example/proj/foo.py -------------------------------------------------------------------------------- /example/proj/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/test/subpkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/test/subpkg/bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/test/subpkg/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/test/subpkg/test/test_bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/proj/test/test_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/example/proj/test/test_foo.py -------------------------------------------------------------------------------- /g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/g -------------------------------------------------------------------------------- /green/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.2 2 | -------------------------------------------------------------------------------- /green/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/__init__.py -------------------------------------------------------------------------------- /green/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/__main__.py -------------------------------------------------------------------------------- /green/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/cmdline.py -------------------------------------------------------------------------------- /green/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/command.py -------------------------------------------------------------------------------- /green/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/config.py -------------------------------------------------------------------------------- /green/djangorunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/djangorunner.py -------------------------------------------------------------------------------- /green/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/examples.py -------------------------------------------------------------------------------- /green/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/exceptions.py -------------------------------------------------------------------------------- /green/junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/junit.py -------------------------------------------------------------------------------- /green/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/loader.py -------------------------------------------------------------------------------- /green/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/output.py -------------------------------------------------------------------------------- /green/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/process.py -------------------------------------------------------------------------------- /green/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/result.py -------------------------------------------------------------------------------- /green/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/runner.py -------------------------------------------------------------------------------- /green/shell_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/shell_completion.sh -------------------------------------------------------------------------------- /green/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/suite.py -------------------------------------------------------------------------------- /green/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /green/test/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_cmdline.py -------------------------------------------------------------------------------- /green/test/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_command.py -------------------------------------------------------------------------------- /green/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_config.py -------------------------------------------------------------------------------- /green/test/test_djangorunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_djangorunner.py -------------------------------------------------------------------------------- /green/test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_integration.py -------------------------------------------------------------------------------- /green/test/test_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_junit.py -------------------------------------------------------------------------------- /green/test/test_load_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_load_tests.py -------------------------------------------------------------------------------- /green/test/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_loader.py -------------------------------------------------------------------------------- /green/test/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_output.py -------------------------------------------------------------------------------- /green/test/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_process.py -------------------------------------------------------------------------------- /green/test/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_result.py -------------------------------------------------------------------------------- /green/test/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_runner.py -------------------------------------------------------------------------------- /green/test/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_suite.py -------------------------------------------------------------------------------- /green/test/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_version.py -------------------------------------------------------------------------------- /green/test/test_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/test/test_windows.py -------------------------------------------------------------------------------- /green/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/green/version.py -------------------------------------------------------------------------------- /img/GreenCourseImagePromoStripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/img/GreenCourseImagePromoStripe.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/release.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | coverage 3 | lxml 4 | setuptools 5 | unidecode 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/setup.py -------------------------------------------------------------------------------- /test_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanCut/green/HEAD/test_versions --------------------------------------------------------------------------------