Metadata-Version: 2.4
Name: goga-tool-pybuggy
Version: 1.0.2
Summary: Goga tool for testing.
License: BSD-3-Clause
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Requires-Dist: datamodel-code-generator>=0.68
Requires-Dist: deepdiff>=8.0
Requires-Dist: gitpython>=3.1
Requires-Dist: jsonpath-ng>=1.6
Requires-Dist: jsonschema>=4.0
Requires-Dist: prance>=23.0.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyhamcrest>=2.0
Requires-Dist: python-dateutil>=2.8
Requires-Dist: python-dotenv>=1.2.2
Requires-Dist: pyyaml>=6.0
Requires-Dist: ruamel.yaml>=0.18
Requires-Dist: ruff>=0.15.0
Requires-Dist: jinja2>=3.1
Requires-Dist: flaky>=3.8.1
Requires-Dist: pytest-concurrency<1.1.0,>=1.0.0
Requires-Dist: swax<1.1.0,>=1.0.0
Requires-Dist: resq<1.1.0,>=1.0.0
Requires-Dist: pluginator<1.1.0,>=1.0.0
Provides-Extra: test
Requires-Dist: goga<1.3.0,>=1.2.0; extra == "test"
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-cov>=5.0; extra == "test"
Requires-Dist: ruff>=0.15.0; extra == "test"
Requires-Dist: jinja2>=3.1; extra == "test"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.6.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.5.0; extra == "docs"
Dynamic: license-file

# goga-tool-pybuggy

**pybuggy** is a **goga**(<https://github.com/qarium/goga>) tool for testing:
**API** — it turns OpenAPI/Swagger specifications into ready-made pytest fixtures — HTTP client,
endpoint fixtures, response schemas, per-endpoint `meta.json` input contracts (query
parameters, request body, URL variables) — and wires everything into the consumer's test
suite. The package contains a pytest plugin and a CLI.

**Documentation**: <https://qarium.github.io/goga-tool-pybuggy/>

## Quickstart

Three commands in the target project root:

```bash
goga install pybuggy                 # 1. install pybuggy into the goga environment
goga tool pybuggy init               # 2. bootstrap: goga project + tool config + conftest.py
goga pipeline pybuggy:api.automate   # 3. run the automated API-test lifecycle
```

The pipeline asks for the feature under test and drives the whole chain — requirements,
test cases, test code — until accepted `test_*.py` suites land in `tests/`. The full
stage list and artifact chain:
[the `api.automate` lifecycle](https://qarium.github.io/goga-tool-pybuggy/pipelines/).
