This is an automated email from the ASF dual-hosted git repository. astitcher pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
commit 700781bd137bdac9ad0165f96ee2056305c89d67 Author: Andrew Stitcher <[email protected]> AuthorDate: Tue Apr 19 10:56:26 2022 -0400 PROTON-2536: Add flake8 to CI jobs for changed Python setup --- .appveyor.yml | 2 +- .github/workflows/build.yml | 2 +- .travis.yml | 2 +- azure-pipelines/steps.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index a936aba6..c01f8984 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -37,7 +37,7 @@ install: - vcpkg integrate install # https://pythonhosted.org/CodeChat/appveyor.yml.html - "%PYTHON%\\python.exe -m pip install --user --upgrade pip" -- "%PYTHON%\\python.exe -m pip install --user --upgrade setuptools wheel tox" +- "%PYTHON%\\python.exe -m pip install --user --upgrade setuptools wheel tox flake8" cache: - C:\ProgramData\chocolatey\bin -> .appveyor.yml - C:\ProgramData\chocolatey\lib -> .appveyor.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c41c9f06..4e8ac85c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: - name: Install python dependencies run: | python -m pip install --upgrade pip - python -m pip install setuptools wheel tox + python -m pip install setuptools wheel tox flake8 - name: Install Linux dependencies if: runner.os == 'Linux' run: | diff --git a/.travis.yml b/.travis.yml index dbd3a9ee..a773c955 100644 --- a/.travis.yml +++ b/.travis.yml @@ -157,7 +157,7 @@ before_install: install: - echo "Using PYTHON=${PYTHON:=python}" - ${PYTHON} -m pip install --user --upgrade pip -- ${PYTHON} -m pip install --user coverage setuptools wheel tox virtualenv +- ${PYTHON} -m pip install --user coverage setuptools wheel tox virtualenv flake8 # PROTON-2125 suppress annoying deprecation warning from Minitest in Ruby tests - gem install minitest:4.3.2 simplecov:0.18.0 codecov diff --git a/azure-pipelines/steps.yml b/azure-pipelines/steps.yml index 0f6e0d7a..66b81b7a 100644 --- a/azure-pipelines/steps.yml +++ b/azure-pipelines/steps.yml @@ -6,7 +6,7 @@ steps: architecture: $(PythonArch) - script: | python -m pip install --user --upgrade pip - python -m pip install --user setuptools wheel tox + python -m pip install --user setuptools wheel tox flake8 name: InstallPythonModules - task: CMake@1 name: CMakeConfigure --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
