napy
NapY is an open-source testing tool for Python that lets developers write test cases in YAML rather than in Python code. It focuses on describing inputs, expected outputs, and the results of running Python functions or methods, enabling quick specification of simple and data-driven tests.
A NapY test suite is a YAML document that defines one or more tests. Each test typically
Usage and workflow: Install via pip install napy, create a YAML file describing tests, and run napy
Limitations and notes: NapY emphasizes simplicity for writing small tests but may not cover all testing needs
See also: PyYAML, Python testing frameworks, YAML-based testing tools.