Jimaku-DL Tests
This directory contains tests for the jimaku-dl package using pytest.
Running Tests
To run all tests:
pytest
To run with verbose output:
pytest -v
To run a specific test file:
pytest tests/test_downloader.py
To run a specific test:
pytest tests/test_downloader.py::TestJimakuDownloader::test_init
Test Coverage
To generate a test coverage report:
pytest --cov=jimaku_dl
For an HTML coverage report:
pytest --cov=jimaku_dl --cov-report=html
Adding Tests
- Create test files with the naming convention
test_*.py
- Create test classes with the naming convention
Test*
- Create test methods with the naming convention
test_*
- Use the fixtures defined in
conftest.py
for common functionality