Block sockets for unit-tests (#4803)

# Block usage of sockets during unit tests

Catch any tests that attempt to use the network.
This commit is contained in:
Eugene Yurtsev
2023-05-16 14:41:24 -04:00
committed by GitHub
parent f7e3d97b19
commit c3b6129beb
4 changed files with 30 additions and 5 deletions

View File

@@ -35,13 +35,13 @@ lint lint_diff:
TEST_FILE ?= tests/unit_tests/
test:
poetry run pytest $(TEST_FILE)
poetry run pytest --disable-socket --allow-unix-socket $(TEST_FILE)
tests:
poetry run pytest $(TEST_FILE)
tests:
poetry run pytest --disable-socket --allow-unix-socket $(TEST_FILE)
extended_tests:
poetry run pytest --only-extended tests/unit_tests
poetry run pytest --disable-socket --allow-unix-socket --only-extended tests/unit_tests
test_watch:
poetry run ptw --now . -- tests/unit_tests