build: remove python linting #20851

This includes both the `lintpy` make target and for CI. We're actively
trying to reduce our python usage, so this only seems to give warnings
for unimportant things such as exceeding the line after deleting python
code.
This commit is contained in:
dundargoc
2022-10-29 19:42:10 +02:00
committed by GitHub
parent 6884f017b5
commit 1d625a3cf7
4 changed files with 4 additions and 18 deletions

View File

@@ -38,7 +38,6 @@ jobs:
automake \ automake \
build-essential \ build-essential \
cmake \ cmake \
flake8 \
gettext \ gettext \
libluajit-5.1-dev \ libluajit-5.1-dev \
libmsgpack-dev \ libmsgpack-dev \
@@ -106,10 +105,6 @@ jobs:
name: lintlua name: lintlua
run: make lintlua run: make lintlua
- if: "!cancelled()"
name: lintpy
run: make lintpy
- if: "!cancelled()" - if: "!cancelled()"
name: lintsh name: lintsh
run: make lintsh run: make lintsh

View File

@@ -16,7 +16,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: [ 'cpp', 'python' ] language: [ 'cpp' ]
steps: steps:
- name: Checkout repository - name: Checkout repository

View File

@@ -608,7 +608,6 @@ endif()
# #
find_program(LUACHECK_PRG luacheck) find_program(LUACHECK_PRG luacheck)
find_program(STYLUA_PRG stylua) find_program(STYLUA_PRG stylua)
find_program(FLAKE8_PRG flake8)
find_program(UNCRUSTIFY_PRG uncrustify) find_program(UNCRUSTIFY_PRG uncrustify)
find_program(SHELLCHECK_PRG shellcheck) find_program(SHELLCHECK_PRG shellcheck)
@@ -635,14 +634,6 @@ add_custom_target(lintlua)
add_dependencies(lintlua lintlua-luacheck lintlua-stylua) add_dependencies(lintlua lintlua-luacheck lintlua-stylua)
include(InstallHelpers) include(InstallHelpers)
add_glob_targets(
TARGET lintpy
COMMAND ${FLAKE8_PRG}
FLAGS --max-line-length 100
GLOB_DIRS contrib scripts src test
GLOB_PAT *.py
TOUCH_STRATEGY SINGLE
)
add_glob_targets( add_glob_targets(
TARGET lintsh TARGET lintsh
@@ -658,7 +649,7 @@ add_custom_target(lintcommit
add_dependencies(lintcommit nvim) add_dependencies(lintcommit nvim)
add_custom_target(lint) add_custom_target(lint)
add_dependencies(lint check-single-includes lintc lintlua lintpy lintsh lintcommit lintuncrustify) add_dependencies(lint check-single-includes lintc lintlua lintsh lintcommit lintuncrustify)
# #
# Format # Format

View File

@@ -130,7 +130,7 @@ src/nvim/testdir/%.vim: phony_force
functionaltest functionaltest-lua unittest benchmark: | nvim functionaltest functionaltest-lua unittest benchmark: | nvim
$(BUILD_TOOL) -C build $@ $(BUILD_TOOL) -C build $@
lintlua lintsh lintpy lintuncrustify lintc lintcfull check-single-includes generated-sources lintcommit lint formatc formatlua format: | build/.ran-cmake lintlua lintsh lintuncrustify lintc lintcfull check-single-includes generated-sources lintcommit lint formatc formatlua format: | build/.ran-cmake
$(CMAKE_PRG) --build build --target $@ $(CMAKE_PRG) --build build --target $@
test: functionaltest unittest test: functionaltest unittest
@@ -166,4 +166,4 @@ $(DEPS_BUILD_DIR)/%: phony_force
$(BUILD_TOOL) -C $(DEPS_BUILD_DIR) $(patsubst $(DEPS_BUILD_DIR)/%,%,$@) $(BUILD_TOOL) -C $(DEPS_BUILD_DIR) $(patsubst $(DEPS_BUILD_DIR)/%,%,$@)
endif endif
.PHONY: test lintlua lintpy lintsh functionaltest unittest lint lintc clean distclean nvim libnvim cmake deps install appimage checkprefix lintcommit formatc formatlua format .PHONY: test lintlua lintsh functionaltest unittest lint lintc clean distclean nvim libnvim cmake deps install appimage checkprefix lintcommit formatc formatlua format