Changeset View
Changeset View
Standalone View
Standalone View
Makefile
pylint: | pylint: | ||||
pylint -j 0 `git ls-files '*.py'` --rcfile=.pylintrc | pylint -j 0 `git ls-files '*.py'` --rcfile=.pylintrc | ||||
update_doc_snapshot: | update_doc_snapshot: | ||||
pytest docs --snapshot-update | pytest docs --snapshot-update | ||||
black: | |||||
black examples integration_tests helm python_modules .buildkite --line-length 100 --target-version py36 --target-version py37 --target-version py38 --fast --exclude "build/|buck-out/|dist/|_build/|\.eggs/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|snapshots/|intro_tutorial/" | |||||
black examples/docs_snippets/docs_snippets/intro_tutorial --line-length 78 --target-version py36 --target-version py37 --target-version py38 --fast --exclude "build/|buck-out/|dist/|_build/|\.eggs/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|snapshots/" | |||||
check_black: | |||||
black examples integration_tests helm python_modules .buildkite --check --line-length 100 --target-version py36 --target-version py37 --target-version py38 --fast --exclude "build/|buck-out/|dist/|_build/|\.eggs/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|snapshots/|intro_tutorial/" | |||||
black examples/docs_snippets/docs_snippets/intro_tutorial --check --line-length 78 --target-version py36 --target-version py37 --target-version py38 --fast --exclude "build/|buck-out/|dist/|_build/|\.eggs/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|snapshots/" | |||||
isort: | isort: | ||||
isort `git ls-files '*.py' ':!:examples/docs_snippets/docs_snippets/intro_tutorial'` | isort `git ls-files '*.py' ':!:examples/docs_snippets/**/*.py'` | ||||
isort -l 78 `git ls-files 'examples/docs_snippets/docs_snippets/intro_tutorial/*.py'` | isort -l 78 `git ls-files 'examples/docs_snippets/**/*.py'` | ||||
yamllint: | yamllint: | ||||
yamllint -c .yamllint.yaml --strict `git ls-files 'helm/**/*.yml' 'helm/**/*.yaml' ':!:helm/**/templates/*.yml' ':!:helm/**/templates/*.yaml'` | yamllint -c .yamllint.yaml --strict `git ls-files 'helm/**/*.yml' 'helm/**/*.yaml' ':!:helm/**/templates/*.yml' ':!:helm/**/templates/*.yaml'` | ||||
install_dev_python_modules: | install_dev_python_modules: | ||||
python scripts/install_dev_python_modules.py -qqq | python scripts/install_dev_python_modules.py -qqq | ||||
install_dev_python_modules_verbose: | install_dev_python_modules_verbose: | ||||
Show All 25 Lines |