842 B
842 B
测试
此目录包含 pptopic 库的测试文件。
运行测试
运行所有测试:
pytest
运行测试并生成覆盖率报告:
pytest --cov=pptopic --cov-report=html
运行特定测试文件:
pytest tests/test_convert.py
运行特定测试类:
pytest tests/test_convert.py::TestConvertPPTClass
运行特定测试函数:
pytest tests/test_convert.py::TestConvertPPTClass::test_init_with_valid_file
测试结构
test_convert.py-convertPPT类的测试test_longpic.py-PPT_longPic函数的测试test_optimization.py-imageOptimization函数的测试
测试标记
测试可以使用以下标记:
slow- 慢速测试(可以使用-m "not slow"跳过)integration- 集成测试unit- 单元测试