Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 410 Bytes

File metadata and controls

20 lines (16 loc) · 410 Bytes

Development & Testing

OS³ uses pytest for testing. To set up the development environment and run tests:

1. Install Dependencies (including testing tools)

py -m pip install -r requirements.txt
py -m pip install -e .

2. Run Tests

pytest

3. Generate Coverage Report

pytest --cov=src/os3 --cov-report=html

The report will be available in htmlcov/index.html.