Skip to content

Commit

Permalink
build: no longer run pylint on CI
Browse files Browse the repository at this point in the history
From redwood release can't run ecommerce pylint.
  • Loading branch information
igobranco committed Jul 30, 2024
1 parent cb18fe3 commit 67d2103
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ lint_pylint: _prerequire
pylint -j 0 --rcfile=pylintrc --verbose --init-hook='import sys; sys.path.append("${ECOMMERCE_SOURCE_PATH}")' $(SRC_FOLDER_FULL_PATH)
.PHONY: lint_pylint

lint: | lint_isort lint_pycodestyle lint_pylint ## Run Python linting
# Can't run pylint from ecommerce externally, the pylint plugins aren't being loaded.
lint: | lint_isort lint_pycodestyle # lint_pylint ## Run Python linting
.PHONY: lint

extract_translations: ## Extract translations from source code
Expand Down

0 comments on commit 67d2103

Please sign in to comment.