{"id":25602788,"url":"https://github.com/jaimeneto85/qa-test-report","last_synced_at":"2026-05-14T01:39:46.937Z","repository":{"id":278422422,"uuid":"935570245","full_name":"jaimeneto85/qa-test-report","owner":"jaimeneto85","description":"A comprehensive Quality Assurance and Testing validation form system designed to standardize and streamline the QA process in software development projects.","archived":false,"fork":false,"pushed_at":"2025-02-19T23:20:21.000Z","size":64,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-11T01:31:47.614Z","etag":null,"topics":["python3","qa","streamlit","testing"],"latest_commit_sha":null,"homepage":"https://quality-assurance-test-report.streamlit.app/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaimeneto85.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-19T16:56:03.000Z","updated_at":"2025-04-04T14:28:31.000Z","dependencies_parsed_at":"2025-02-19T18:11:01.048Z","dependency_job_id":null,"html_url":"https://github.com/jaimeneto85/qa-test-report","commit_stats":null,"previous_names":["jaimeneto85/qa-test-report"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jaimeneto85/qa-test-report","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimeneto85%2Fqa-test-report","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimeneto85%2Fqa-test-report/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimeneto85%2Fqa-test-report/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimeneto85%2Fqa-test-report/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaimeneto85","download_url":"https://codeload.github.com/jaimeneto85/qa-test-report/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimeneto85%2Fqa-test-report/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33006739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python3","qa","streamlit","testing"],"created_at":"2025-02-21T17:24:02.730Z","updated_at":"2026-05-14T01:39:46.919Z","avatar_url":"https://github.com/jaimeneto85.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QA Test Report System\n\n![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)\n\nA comprehensive Quality Assurance and Testing validation form system designed to standardize and streamline the QA process in software development projects.\n\n## Motivation\n\nIn modern software development, maintaining high quality standards is crucial. The QA Test Report System addresses several key needs:\n\n- **Standardization**: Ensures all QA engineers follow the same validation criteria\n- **Comprehensive Coverage**: Validates multiple aspects of software delivery:\n  - UX/UI Design Compliance\n  - Functionality and Behavior\n  - Code Quality and Testability\n  - Accessibility and Performance\n- **Documentation**: Generates detailed PDF reports for each validation\n- **Traceability**: Links validations to specific tasks and versions\n- **Multilingual Support**: Available in multiple languages (currently English and Portuguese)\n\n## Features\n\n- 📋 Step-by-step validation process\n- 🎨 UX/UI compliance verification\n- 🔍 Functionality and behavior testing\n- 💻 Code quality assessment\n- ♿ Accessibility validation\n- 📊 Performance evaluation\n- 📝 Detailed feedback system\n- 📄 PDF report generation\n- 🌐 Internationalization support\n- 🎯 Task tracking integration\n\n## Prerequisites\n\nBefore installing the application, make sure you have the following installed:\n\n1. Python 3.10 or higher\n2. Pipenv (install with `pip install pipenv`)\n3. gettext:\n   - On macOS:\n     ```bash\n     brew install gettext\n     ```\n   - On Ubuntu/Debian:\n     ```bash\n     sudo apt-get install gettext\n     ```\n   - On Windows:\n     Download and install gettext from the [GNU gettext website](https://www.gnu.org/software/gettext/)\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/qa-test-report.git\ncd qa-test-report\n```\n\n2. Install dependencies using Pipenv:\n```bash\npipenv run streamlit run app.py\n```\n\nThis will create a virtual environment and install all required dependencies from the Pipfile.\n\n## Running the Application\n\n1. Activate the Pipenv shell:\n```bash\npipenv shell\n```\n\n2. Start the Streamlit application:\n```bash\nstreamlit run app.py\n```\n\n3. Open your browser and navigate to the URL shown in the terminal (usually http://localhost:8501)\n\n## Translation System\n\nThe application supports multiple languages through gettext. Currently supported languages:\n- English (en_US)\n- Portuguese (pt_BR)\n\n### Adding New Translations\n\n1. Create a new language directory:\n```bash\nmkdir -p locale/[LANG_CODE]/LC_MESSAGES\n```\n\n2. Copy the template:\n```bash\ncp locale/messages.pot locale/[LANG_CODE]/LC_MESSAGES/messages.po\n```\n\n3. Edit the `messages.po` file with your translations\n\n4. Compile translations:\n```bash\n./compile_translations.py\n```\n\n### Updating Existing Translations\n\n1. Update the messages template:\n```bash\npybabel extract -o locale/messages.pot .\n```\n\n2. Update translation files:\n```bash\npybabel update -i locale/messages.pot -d locale\n```\n\n3. Edit the updated .po files in `locale/[LANG_CODE]/LC_MESSAGES/`\n\n4. Compile translations:\n```bash\n./compile_translations.py\n```\n\n## Project Structure\n\n```\nqa-test-report/\n├── app.py                 # Main application file\n├── lib/                   # Library modules\n│   ├── __init__.py\n│   ├── form_data.py      # Form data handling\n│   ├── pdf_generator.py  # PDF report generation\n│   ├── styles.py         # UI styles\n│   └── translations.py   # i18n support\n├── locale/               # Translation files\n│   ├── en_US/           # English translations\n│   └── pt_BR/           # Portuguese translations\n├── reports/             # Generated PDF reports\n├── Pipfile              # Pipenv dependencies\n├── Pipfile.lock         # Pipenv lock file\n└── README.md            # This file\n```\n\n## Development\n\nTo install development dependencies:\n```bash\npipenv install --dev\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Commit your changes\n4. Push to the branch\n5. Create a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Support\n\nFor support, please open an issue in the GitHub repository or contact the development team.\n\n😉 Stay in touch:\n\n- [LinkedIn](https://www.linkedin.com/in/jaimeflneto/)\n- [GitHub](https://github.com/jaimeneto85)\n- [Email](mailto:jaimeflneto@gmail.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimeneto85%2Fqa-test-report","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaimeneto85%2Fqa-test-report","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimeneto85%2Fqa-test-report/lists"}