File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- FROM debian:bullseye
1+ FROM debian:latest
22ARG CI_UID
33RUN useradd -m -u ${CI_UID} ci
44RUN apt-get update && \
5- apt-get -y install flake8 procps
5+ apt-get -y install build-essential flake8 procps
66WORKDIR /ci
77RUN chown ${CI_UID}:${CI_UID} .
88COPY --chown=${CI_UID}:${CI_UID} . .
9- CMD sh -x .buildbot.sh
9+ CMD ["sh", "-x", " .buildbot.sh"]
Original file line number Diff line number Diff line change 6363
6464
6565def should_skip_advisory (adv_tup ):
66- assert ( len (adv_tup ) == 3 )
66+ assert len (adv_tup ) == 3
6767
6868 # Look for an exact match.
6969 expiry = None
@@ -74,7 +74,7 @@ def should_skip_advisory(adv_tup):
7474 # Now try wildcard matching.
7575 for (skip_tup , skip_expiry ) in SKIP_ADVISORIES .items ():
7676 match_list = list (adv_tup )
77- assert ( len (skip_tup ) == 3 )
77+ assert len (skip_tup ) == 3
7878 for idx in range (len (skip_tup )):
7979 if skip_tup [idx ] == '*' :
8080 match_list [idx ] = "*"
You can’t perform that action at this time.
0 commit comments