mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-17 21:25:50 +02:00
- Replace ignore_errors: true with failed_when: false in 5 files (main.yml, users.yml, ubuntu.yml, umount.yml, test-wireguard-real-async.yml) - Add pytest.ini configuration for test discovery - Add tests/conftest.py with shared fixtures and mock helpers The failed_when: false pattern is preferred by ansible-lint as it explicitly indicates expected failure handling rather than silently ignoring all errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
10 lines
216 B
INI
10 lines
216 B
INI
[pytest]
|
|
testpaths = tests/unit
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts = -v --tb=short
|
|
filterwarnings =
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning
|