mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
revert: "chore: add typing target in Makefile" (#35013)
Reverts langchain-ai/langchain#35012
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests test_watch integration_tests help extended_tests check_version
|
.PHONY: all format lint test tests test_watch integration_tests help extended_tests check_version
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -57,9 +57,7 @@ lint lint_diff lint_package lint_tests:
|
|||||||
./scripts/lint_imports.sh
|
./scripts/lint_imports.sh
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -76,7 +74,6 @@ help:
|
|||||||
@echo '----'
|
@echo '----'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'check_version - validate version consistency'
|
@echo 'check_version - validate version consistency'
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all coverage test tests extended_tests test_watch test_watch_extended integration_tests check_imports lint format typing lint_diff format_diff lint_package lint_tests help
|
.PHONY: all coverage test tests extended_tests test_watch test_watch_extended integration_tests check_imports lint format lint_diff format_diff lint_package lint_tests help
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -56,9 +56,7 @@ lint lint_diff lint_package lint_tests:
|
|||||||
./scripts/lint_imports.sh
|
./scripts/lint_imports.sh
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -73,7 +71,6 @@ help:
|
|||||||
@echo '-- LINTING --'
|
@echo '-- LINTING --'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo '-- TESTS --'
|
@echo '-- TESTS --'
|
||||||
@echo 'coverage - run unit tests and generate coverage report'
|
@echo 'coverage - run unit tests and generate coverage report'
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all start_services stop_services coverage coverage_agents test test_fast extended_tests test_watch test_watch_extended integration_tests check_imports check_version lint format typing lint_diff format_diff lint_package lint_tests help
|
.PHONY: all start_services stop_services coverage coverage_agents test test_fast extended_tests test_watch test_watch_extended integration_tests check_imports check_version lint format lint_diff format_diff lint_package lint_tests help
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -88,9 +88,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -105,7 +103,6 @@ help:
|
|||||||
@echo '-- LINTING --'
|
@echo '-- LINTING --'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'check_version - validate version consistency'
|
@echo 'check_version - validate version consistency'
|
||||||
@echo '-- TESTS --'
|
@echo '-- TESTS --'
|
||||||
@echo 'coverage - run unit tests and generate coverage report'
|
@echo 'coverage - run unit tests and generate coverage report'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -41,9 +41,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -61,7 +59,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -39,9 +39,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -59,7 +57,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -37,9 +37,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -57,7 +55,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -38,9 +38,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -58,7 +56,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -37,9 +37,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -57,7 +55,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -36,9 +36,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -56,7 +54,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -37,9 +37,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -57,7 +55,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -37,9 +37,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -57,7 +55,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -39,9 +39,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -59,7 +57,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -37,9 +37,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -57,7 +55,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -46,9 +46,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -66,7 +64,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -50,9 +50,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -70,7 +68,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -36,9 +36,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -56,7 +54,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -35,9 +35,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -55,7 +53,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_test integration_tests help
|
.PHONY: all format lint test tests integration_test integration_tests help
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -38,9 +38,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -58,7 +56,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'lint_tests - run linters on tests'
|
@echo 'lint_tests - run linters on tests'
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -36,9 +36,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -56,7 +54,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests integration_tests help extended_tests
|
.PHONY: all format lint test tests integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -35,9 +35,7 @@ lint_tests: MYPY_CACHE=.mypy_cache_test
|
|||||||
lint lint_diff lint_package lint_tests:
|
lint lint_diff lint_package lint_tests:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -55,7 +53,6 @@ help:
|
|||||||
@echo 'check_imports - check imports'
|
@echo 'check_imports - check imports'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: all format lint typing test tests test_watch integration_tests help extended_tests
|
.PHONY: all format lint test tests test_watch integration_tests help extended_tests
|
||||||
|
|
||||||
# Default target executed when no arguments are given to make.
|
# Default target executed when no arguments are given to make.
|
||||||
all: help
|
all: help
|
||||||
@@ -45,9 +45,7 @@ lint lint_diff lint_package lint_tests:
|
|||||||
./scripts/lint_imports.sh
|
./scripts/lint_imports.sh
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff check $(PYTHON_FILES)
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES) --diff
|
||||||
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
||||||
typing:
|
|
||||||
mkdir -p $(MYPY_CACHE) && uv run --all-groups mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
|
||||||
|
|
||||||
format format_diff:
|
format format_diff:
|
||||||
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
[ "$(PYTHON_FILES)" = "" ] || uv run --all-groups ruff format $(PYTHON_FILES)
|
||||||
@@ -61,7 +59,6 @@ help:
|
|||||||
@echo '----'
|
@echo '----'
|
||||||
@echo 'format - run code formatters'
|
@echo 'format - run code formatters'
|
||||||
@echo 'lint - run linters'
|
@echo 'lint - run linters'
|
||||||
@echo 'typing - run type checking'
|
|
||||||
@echo 'test - run unit tests'
|
@echo 'test - run unit tests'
|
||||||
@echo 'tests - run unit tests'
|
@echo 'tests - run unit tests'
|
||||||
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
||||||
|
|||||||
Reference in New Issue
Block a user