https://github.com/zyuanlim/software-data-testing
https://github.com/zyuanlim/software-data-testing
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zyuanlim/software-data-testing
- Owner: zyuanlim
- Created: 2024-12-30T07:15:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-09T15:10:16.000Z (5 months ago)
- Last Synced: 2025-01-16T15:43:19.463Z (5 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Software and Data Testing
Software and data testing / validation techniques using Python.
## Getting Started
1. Clone the repository
2. Create a virtual environment:```bash
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
```3. Install dependencies:
```bash
pip install -r requirements.txt
```## Running Tests
Execute tests using:
```bash
python -m pytest
```To test a specific file, use:
```bash
python -m pytest tests/test_file.py
```## Features
- Unit testing
- HTTP request testing
- Mock testing capabilities
- Data validation and testing