Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/govtool-backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ Thumbs.db
# Other
*.bak
reports/

allure-results/
15 changes: 15 additions & 0 deletions tests/govtool-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,18 @@ export METRICS_URL="url" # metrics server Url
export METRICS_API_SECRET="metrics-api-secret"
pytest -v
```

## Allure Report
Generate and view test reports using Allure.

### Run Tests with Allure
Execute tests and save results to the `allure-results` directory:
```bash
python -m pytest --alluredir allure-results
```

### View Allure Dashboard
Launch the Allure dashboard to view the test report:
```bash
allure serve allure-results
```