multiple: disable socket for unit tests (#29080)

This commit is contained in:
Erick Friis
2025-01-07 15:31:50 -08:00
committed by GitHub
parent 539ebd5431
commit fcc9cdd100
24 changed files with 123 additions and 19 deletions

View File

@@ -8,7 +8,10 @@ TEST_FILE ?= tests/unit_tests/
integration_test integration_tests: TEST_FILE=tests/integration_tests/
test tests integration_test integration_tests:
test tests:
poetry run pytest --disable-socket --allow-unix-socket $(TEST_FILE)
integration_test integration_tests:
poetry run pytest $(TEST_FILE)
test_watch: