I built a simple pytest plugin for test observability (need your help π )
Dmitrii Shakhov has developed a pytest plugin aimed at improving test observability for QA engineers and developers. The plugin exports test results into ClickHouse and includes features like automatic CI detection and Allure report support. Shakhov is seeking feedback and suggestions from the community to enhance the tool further.
- βͺThe pytest plugin is designed to improve test observability without requiring a test management system.
- βͺIt integrates with pytest and exports results into ClickHouse.
- βͺShakhov is looking for users to test the plugin and provide feedback.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 1504995) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Dmitrii Shakhov Posted on May 27 I built a simple pytest plugin for test observability (need your help π ) #qa #python #pytest #ci Guys, I need your help π As Iβve noticed, many QA Engineers (also devs) do not measure how stable or fast their tests are. Even teams that do care about test observability often build their own internal tooling to analyze test statistics. People sometimes ask me how they can organize their own analytical system for test observability.
β¦
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).