├── .coveragerc ├── .cruft.json ├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── art ├── demo.gif ├── logo.png ├── logo_large.png └── logo_large.xcf ├── docs └── contributing │ ├── 1.-contributing-guide.md │ ├── 2.-coding-standard.md │ ├── 3.-code-of-conduct.md │ └── 4.-acknowledgements.md ├── hypothesis_auto ├── __init__.py ├── pytest.py └── tester.py ├── poetry.lock ├── pyproject.toml ├── scripts ├── clean.sh ├── done.sh ├── lint.sh └── test.sh ├── setup.cfg └── tests ├── __init__.py ├── example_module.py └── test_tester.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.coveragerc -------------------------------------------------------------------------------- /.cruft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.cruft.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: "timothycrosley" 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/README.md -------------------------------------------------------------------------------- /art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/art/demo.gif -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/art/logo.png -------------------------------------------------------------------------------- /art/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/art/logo_large.png -------------------------------------------------------------------------------- /art/logo_large.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/art/logo_large.xcf -------------------------------------------------------------------------------- /docs/contributing/1.-contributing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/docs/contributing/1.-contributing-guide.md -------------------------------------------------------------------------------- /docs/contributing/2.-coding-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/docs/contributing/2.-coding-standard.md -------------------------------------------------------------------------------- /docs/contributing/3.-code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/docs/contributing/3.-code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing/4.-acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/docs/contributing/4.-acknowledgements.md -------------------------------------------------------------------------------- /hypothesis_auto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/hypothesis_auto/__init__.py -------------------------------------------------------------------------------- /hypothesis_auto/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/hypothesis_auto/pytest.py -------------------------------------------------------------------------------- /hypothesis_auto/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/hypothesis_auto/tester.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/done.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/scripts/done.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/tests/example_module.py -------------------------------------------------------------------------------- /tests/test_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/hypothesis-auto/HEAD/tests/test_tester.py --------------------------------------------------------------------------------