https://github.com/veydantkatyal/regression-testing
naive implementation for SWE
https://github.com/veydantkatyal/regression-testing
allure-report regression-testing swe
Last synced: 4 months ago
JSON representation
naive implementation for SWE
- Host: GitHub
- URL: https://github.com/veydantkatyal/regression-testing
- Owner: veydantkatyal
- License: mit
- Created: 2025-02-18T04:57:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-01T05:28:43.000Z (about 1 year ago)
- Last Synced: 2025-06-22T00:39:49.798Z (12 months ago)
- Topics: allure-report, regression-testing, swe
- Language: HTML
- Homepage:
- Size: 220 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Regression Testing Tool
## Overview
Automated regression testing using **Selenium, PyTest, and Allure Reports**.
## Features
- Web UI automation
- Test execution & reporting
- Parallel execution
- CI/CD integration
## Installation
```bash
pip install selenium pytest webdriver-manager
```
## Run Tests
```bash
pytest --html=report.html --tb=short
```
## View HTML report
```bash
start report.html
```
## Architecture diagram

## Result

## CI/CD Setup (GitHub Actions)
```yaml
name: Regression Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install selenium pytest webdriver-manager
- name: Run tests
run: pytest --html=report.html