File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ all: help
11
11
TEST_FILE ?= tests/unit_tests/
12
12
13
13
test :
14
- uv run pytest $(TEST_FILE )
14
+ uv run pytest --disable-socket --allow-unix-socket $(TEST_FILE )
15
15
16
16
test_watch :
17
17
uv run ptw . -- $(TEST_FILE )
@@ -26,8 +26,8 @@ lint format: PYTHON_FILES=.
26
26
lint_diff format_diff : PYTHON_FILES=$(shell git diff --relative=. --name-only --diff-filter=d master | grep -E '\.py$$|\.ipynb$$')
27
27
28
28
lint lint_diff :
29
- [ " $( PYTHON_FILES) " = " " ] || uv run ruff format $(PYTHON_FILES ) --diff
30
- [ " $( PYTHON_FILES) " = " " ] || uv run ruff check $(PYTHON_FILES ) --diff
29
+ [ " $( PYTHON_FILES) " = " " ] || uv run ruff format $(PYTHON_FILES ) --diff
30
+ [ " $( PYTHON_FILES) " = " " ] || uv run ruff check $(PYTHON_FILES ) --diff
31
31
[ " $( PYTHON_FILES) " = " " ] || uv run mypy $(PYTHON_FILES )
32
32
33
33
format format_diff :
You can’t perform that action at this time.
0 commit comments