From a1dcd7667eeabce768c585b622956cf079f6c55a Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Tue, 1 Jul 2025 11:29:12 -0700 Subject: [PATCH] Update toolkit Makefiles (#466) --- .../arcade_cli/templates/{{ toolkit_name }}/Makefile | 10 +++++----- toolkits/asana/Makefile | 10 +++++----- toolkits/code_sandbox/Makefile | 10 +++++----- toolkits/confluence/Makefile | 10 +++++----- toolkits/dropbox/Makefile | 10 +++++----- toolkits/github/Makefile | 10 +++++----- toolkits/google/Makefile | 10 +++++----- toolkits/hubspot/Makefile | 10 +++++----- toolkits/jira/Makefile | 10 +++++----- toolkits/linkedin/Makefile | 10 +++++----- toolkits/math/Makefile | 10 +++++----- toolkits/microsoft/Makefile | 10 +++++----- toolkits/notion/Makefile | 10 +++++----- toolkits/reddit/Makefile | 10 +++++----- toolkits/salesforce/Makefile | 10 +++++----- toolkits/search/Makefile | 10 +++++----- toolkits/slack/Makefile | 10 +++++----- toolkits/spotify/Makefile | 10 +++++----- toolkits/stripe/Makefile | 10 +++++----- toolkits/web/Makefile | 10 +++++----- toolkits/x/Makefile | 10 +++++----- toolkits/zoom/Makefile | 10 +++++----- 22 files changed, 110 insertions(+), 110 deletions(-) diff --git a/libs/arcade-cli/arcade_cli/templates/{{ toolkit_name }}/Makefile b/libs/arcade-cli/arcade_cli/templates/{{ toolkit_name }}/Makefile index 701ce7a8..0a8969be 100644 --- a/libs/arcade-cli/arcade_cli/templates/{{ toolkit_name }}/Makefile +++ b/libs/arcade-cli/arcade_cli/templates/{{ toolkit_name }}/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/asana/Makefile b/toolkits/asana/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/asana/Makefile +++ b/toolkits/asana/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/code_sandbox/Makefile b/toolkits/code_sandbox/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/code_sandbox/Makefile +++ b/toolkits/code_sandbox/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/confluence/Makefile b/toolkits/confluence/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/confluence/Makefile +++ b/toolkits/confluence/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/dropbox/Makefile b/toolkits/dropbox/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/dropbox/Makefile +++ b/toolkits/dropbox/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/github/Makefile b/toolkits/github/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/github/Makefile +++ b/toolkits/github/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/google/Makefile b/toolkits/google/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/google/Makefile +++ b/toolkits/google/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/hubspot/Makefile b/toolkits/hubspot/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/hubspot/Makefile +++ b/toolkits/hubspot/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/jira/Makefile b/toolkits/jira/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/jira/Makefile +++ b/toolkits/jira/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/linkedin/Makefile b/toolkits/linkedin/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/linkedin/Makefile +++ b/toolkits/linkedin/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/math/Makefile b/toolkits/math/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/math/Makefile +++ b/toolkits/math/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/microsoft/Makefile b/toolkits/microsoft/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/microsoft/Makefile +++ b/toolkits/microsoft/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/notion/Makefile b/toolkits/notion/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/notion/Makefile +++ b/toolkits/notion/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/reddit/Makefile b/toolkits/reddit/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/reddit/Makefile +++ b/toolkits/reddit/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/salesforce/Makefile b/toolkits/salesforce/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/salesforce/Makefile +++ b/toolkits/salesforce/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/search/Makefile b/toolkits/search/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/search/Makefile +++ b/toolkits/search/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/slack/Makefile b/toolkits/slack/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/slack/Makefile +++ b/toolkits/slack/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/spotify/Makefile b/toolkits/spotify/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/spotify/Makefile +++ b/toolkits/spotify/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/stripe/Makefile b/toolkits/stripe/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/stripe/Makefile +++ b/toolkits/stripe/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/web/Makefile b/toolkits/web/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/web/Makefile +++ b/toolkits/web/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/x/Makefile b/toolkits/x/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/x/Makefile +++ b/toolkits/x/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml diff --git a/toolkits/zoom/Makefile b/toolkits/zoom/Makefile index 701ce7a8..0a8969be 100644 --- a/toolkits/zoom/Makefile +++ b/toolkits/zoom/Makefile @@ -31,19 +31,19 @@ clean-build: ## clean build artifacts .PHONY: test test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @uv run pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml + @uv run --no-sources pytest -W ignore -v --cov --cov-config=pyproject.toml --cov-report=xml .PHONY: coverage coverage: ## Generate coverage report @echo "coverage report" - coverage report + @uv run --no-sources coverage report @echo "Generating coverage report" - coverage html + @uv run --no-sources coverage html .PHONY: bump-version bump-version: ## Bump the version in the pyproject.toml file by a patch version @echo "🚀 Bumping version in pyproject.toml" - uv version --bump patch + uv version --no-sources --bump patch .PHONY: check check: ## Run code quality tools. @@ -52,4 +52,4 @@ check: ## Run code quality tools. uv run --no-sources pre-commit run -a;\ fi @echo "🚀 Static type checking: Running mypy" - @uv run mypy --config-file=pyproject.toml + @uv run --no-sources mypy --config-file=pyproject.toml