- Add _initialized check to finish_crawl() and get_stats() in all 3 vault classes - Prevents FileNotFoundError when git commands run on non-existent directories - Update test_crawl.py to use pytest tmp_path fixture - Add network marker to skip functional tests in CI with '-m "not network"'
9 lines
259 B
INI
9 lines
259 B
INI
[pytest]
|
|
asyncio_mode = auto
|
|
asyncio_default_fixture_loop_scope = function
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
markers =
|
|
network: tests that require network access (deselect with '-m "not network"')
|