Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds python tools: pylint and pycodestyle #193

Merged
merged 9 commits into from
Nov 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gets
gavin-stackrox committed Nov 23, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 09ff02b005bdf722503a7a4a87f612eb1cb60e23
8 changes: 2 additions & 6 deletions images/stackrox-test.Dockerfile
Original file line number Diff line number Diff line change
@@ -61,11 +61,9 @@ ENV PATH=$PATH:/usr/pgsql-14/bin

# Add python development tooling
ARG PYCODESTYLE_VERSION=2.10.0
ARG AUTOPEP8_VERSION=2.0.4
ARG PYLINT_VERSION=3.0.2
ARG PYLINT_VERSION=2.13.9
RUN set -ex \
&& pip3 install pycodestyle=="${PYCODESTYLE_VERSION}" \
autopep8=="${AUTOPEP8_VERSION}" \
pylint=="${PYLINT_VERSION}"

# Install bats
@@ -167,11 +165,9 @@ RUN set -ex \

# Add python development tooling
gavin-stackrox marked this conversation as resolved.
Show resolved Hide resolved
ARG PYCODESTYLE_VERSION=2.10.0
ARG AUTOPEP8_VERSION=2.0.4
ARG PYLINT_VERSION=3.0.2
ARG PYLINT_VERSION=2.13.9
RUN set -ex \
&& pip3 install pycodestyle=="${PYCODESTYLE_VERSION}" \
autopep8=="${AUTOPEP8_VERSION}" \
pylint=="${PYLINT_VERSION}"

RUN \