Skip to content

Commit 735b24f

Browse files
committed
x
1 parent c5b904b commit 735b24f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ all: help
1111
TEST_FILE ?= tests/unit_tests/
1212

1313
test:
14-
uv run pytest $(TEST_FILE)
14+
uv run pytest --disable-socket --allow-unix-socket $(TEST_FILE)
1515

1616
test_watch:
1717
uv run ptw . -- $(TEST_FILE)
@@ -26,8 +26,8 @@ lint format: PYTHON_FILES=.
2626
lint_diff format_diff: PYTHON_FILES=$(shell git diff --relative=. --name-only --diff-filter=d master | grep -E '\.py$$|\.ipynb$$')
2727

2828
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
3131
[ "$(PYTHON_FILES)" = "" ] || uv run mypy $(PYTHON_FILES)
3232

3333
format format_diff:

0 commit comments

Comments
 (0)