├── .github └── workflows │ └── pythonpackage.yml ├── .gitignore ├── .hgignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest.ini ├── pytest_quickcheck ├── __init__.py ├── data.py ├── generator.py └── plugin.py ├── setup.cfg ├── setup.py ├── tests ├── python3 │ ├── test_plugin_annotation.py │ └── test_regression.py ├── test_list_generators.py ├── test_listof_realworld.py ├── test_misc.py ├── test_plugin_basic.py ├── test_plugin_basic_with_substitution.py ├── test_plugin_basic_with_type.py └── test_plugin_extend.py └── tox.ini /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/.hgignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/README.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/pytest.ini -------------------------------------------------------------------------------- /pytest_quickcheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_quickcheck/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/pytest_quickcheck/data.py -------------------------------------------------------------------------------- /pytest_quickcheck/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/pytest_quickcheck/generator.py -------------------------------------------------------------------------------- /pytest_quickcheck/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/pytest_quickcheck/plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/setup.py -------------------------------------------------------------------------------- /tests/python3/test_plugin_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/python3/test_plugin_annotation.py -------------------------------------------------------------------------------- /tests/python3/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/python3/test_regression.py -------------------------------------------------------------------------------- /tests/test_list_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_list_generators.py -------------------------------------------------------------------------------- /tests/test_listof_realworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_listof_realworld.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_plugin_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_plugin_basic.py -------------------------------------------------------------------------------- /tests/test_plugin_basic_with_substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_plugin_basic_with_substitution.py -------------------------------------------------------------------------------- /tests/test_plugin_basic_with_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_plugin_basic_with_type.py -------------------------------------------------------------------------------- /tests/test_plugin_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tests/test_plugin_extend.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t2y/pytest-quickcheck/HEAD/tox.ini --------------------------------------------------------------------------------