Fading Coder

One Final Commit for the Last Sprint

Building an Asynchronous API Testing Framework with Pytest, Allure, and Auto-Generation

Asynchronous Data CollectionEfficiency is critical in API testing. As the number of endpoints grows, sequential execution becomes a bottleneck. By leveraging Python's coroutines via aiohttp, we can achieve concurrent request execution. Furthermore, separating the data collection phase from the test...

Documenting Test Workflows in pytest with Allure Steps

Alllure’s step API is an effective way to describe multi-step test flows in pytest, improving readability and making reports actionable. This guide shows how to: Add step annotations to linear flows Nest steps and reuse them across modules Use placeholders to inject arguments in to step titles Recor...