Metadata-Version: 2.4
Name: qapytest
Version: 0.5.0
Summary: A powerful testing framework based on pytest, specifically designed for QA engineers
Project-URL: Homepage, https://github.com/o73k51i/qapytest
Project-URL: Repository, https://github.com/o73k51i/qapytest
Project-URL: Documentation, https://github.com/o73k51i/qapytest/blob/main/README.md
Project-URL: Bug Reports, https://github.com/o73k51i/qapytest/issues
Author-email: o73k51i <o73k51i@proton.me>
License: MIT License
        
        Copyright (c) 2025 o73k51i
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
License-File: NOTICE
Keywords: automation,graphql,http,pytest,qa,redis,soft-assert,sql,test,testing
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Requires-Python: <3.14,>=3.10
Requires-Dist: faker>=37.11.0
Requires-Dist: jinja2>=3.1.6
Requires-Dist: jsonschema>=4.25.1
Requires-Dist: pytest>=8.4.2
Requires-Dist: python-dotenv>=1.1.1
Provides-Extra: all
Requires-Dist: grpc-requests>=0.1.21; extra == 'all'
Requires-Dist: grpcio-reflection>=1.62.0; extra == 'all'
Requires-Dist: grpcio-tools>=1.62.0; extra == 'all'
Requires-Dist: grpcio>=1.62.0; extra == 'all'
Requires-Dist: httpx>=0.28.1; extra == 'all'
Requires-Dist: pytest-playwright>=0.7.1; extra == 'all'
Requires-Dist: redis>=6.4.0; extra == 'all'
Requires-Dist: sqlalchemy>=2.0.43; extra == 'all'
Provides-Extra: grpc
Requires-Dist: grpc-requests>=0.1.21; extra == 'grpc'
Requires-Dist: grpcio-reflection>=1.62.0; extra == 'grpc'
Requires-Dist: grpcio-tools>=1.62.0; extra == 'grpc'
Requires-Dist: grpcio>=1.62.0; extra == 'grpc'
Provides-Extra: http
Requires-Dist: httpx>=0.28.1; extra == 'http'
Provides-Extra: redis
Requires-Dist: redis>=6.4.0; extra == 'redis'
Provides-Extra: sql
Requires-Dist: sqlalchemy>=2.0.43; extra == 'sql'
Provides-Extra: web
Requires-Dist: pytest-playwright>=0.7.1; extra == 'web'
Description-Content-Type: text/markdown

# QaPyTest

[![PyPI version](https://img.shields.io/pypi/v/qapytest.svg)](https://pypi.org/project/qapytest/)
[![PyPI Downloads](https://static.pepy.tech/personalized-badge/qapytest?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLUE&right_color=YELLOW&left_text=downloads)](https://pepy.tech/projects/qapytest)
[![Python versions](https://img.shields.io/pypi/pyversions/qapytest.svg)](https://pypi.org/project/qapytest/)
[![License](https://img.shields.io/github/license/o73k51i/qapytest.svg)](https://github.com/o73k51i/qapytest/blob/main/LICENSE)
[![GitHub stars](https://img.shields.io/github/stars/o73k51i/qapytest.svg?style=social)](https://github.com/o73k51i/qapytest)

`QaPyTest` — a powerful testing framework based on pytest, specifically
designed for QA engineers. Turn your ordinary tests into detailed, structured
reports with built-in HTTP, SQL, Redis, GraphQL and gRPC clients.

🎯 **QA made for QA** — every feature is designed for real testing and
debugging needs.

## ⚡ Why QaPyTest?

- **🚀 Ready to use:** Install → run → get a beautiful report
- **🔧 Built-in clients:** HTTP, SQL, Redis, GraphQL, gRPC — all in one package
- **📊 Professional reports:** HTML reports with attachments and logs
- **🎯 Soft assertions:** Collect multiple failures in one run instead of
  stopping at the first
- **📝 Structured steps:** Make your tests self-documenting
- **🔍 Debugging friendly:** Full traceability of every action in the test

## ⚙️ Key features

- **HTML report generation:** beautiful self-contained report at `report.html`.
- **JSON report generation:** structured data report at `report.json` for
  programmatic processing and CI/CD integration.
- **Soft assertions:** allow collecting multiple failures in a single run
  without immediately ending the test.
- **Advanced steps:** structured logging of test steps for better report
  readability.
- **Attachments:** ability to add files, logs and screenshots to test reports.
- **HTTP client:** client for performing HTTP requests.
- **SQL client:** client for executing raw SQL queries.
- **Redis client:** client for working with Redis.
- **GraphQL client:** client for executing GraphQL requests.
- **gRPC client:** client for executing gRPC requests.
- **Browser automation:** seamless integration with pytest-playwright for
  end-to-end web testing.
- **Test data generation:** built-in Faker support for creating realistic test
  data.
- **JSON Schema validation:** function to validate API responses or test
  artifacts with support for soft-assert and strict mode.
- **Unicode support:** proper display of Unicode characters (Cyrillic, Arabic,
  Chinese, etc.) in terminal and HTML reports.

## 👥 Ideal for

- **QA Engineers** — automate testing of APIs, databases, web services and
  browser interfaces
- **Test Automation specialists** — get a ready toolkit for comprehensive
  testing including web automation

## 📚 Documentation

Complete documentation organized by topic:

- [Quick Start Guide](https://github.com/o73k51i/qapytest/blob/main/docs/QuickStart.md)
- [Installation Guide](https://github.com/o73k51i/qapytest/blob/main/docs/Installation.md)
- [Core Tools](https://github.com/o73k51i/qapytest/blob/main/docs/CoreTools.md)
- [Test Data Generation](https://github.com/o73k51i/qapytest/blob/main/docs/TestDataGeneration.md)
- [Test Markers](https://github.com/o73k51i/qapytest/blob/main/docs/Markers.md)
- [CLI Options](https://github.com/o73k51i/qapytest/blob/main/docs/CLI.md)
- [Integration Clients](https://github.com/o73k51i/qapytest/blob/main/docs/Clients.md)
- [Browser Automation](https://github.com/o73k51i/qapytest/blob/main/docs/BrowserAutomation.md)

## 📑 License

This project is distributed under the
[license](https://github.com/o73k51i/qapytest/blob/main/LICENSE).
