diff --git a/tests/bandit.yaml b/tests/bandit.yaml new file mode 100644 index 0000000..1b5bc66 --- /dev/null +++ b/tests/bandit.yaml @@ -0,0 +1,17 @@ +# https://bandit.readthedocs.io/en/latest/config.html + +tests: + - B108 + - B306 + - B307 + - B313 + - B314 + - B315 + - B316 + - B317 + - B318 + - B319 + - B320 + - B325 + - B602 + - B604 \ No newline at end of file diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..b3def45 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,9 @@ +"""Fixtures for testing.""" + +import pytest + + +@pytest.fixture(autouse=True) +def auto_enable_custom_integrations(enable_custom_integrations): + """Enable custom integrations.""" + return