diff options
author | Maxim Devaev <[email protected]> | 2025-01-04 22:17:55 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2025-01-04 22:17:55 +0200 |
commit | 9aef70c43f83c4b1513b22a9dd20b50d9b5bf9bf (patch) | |
tree | b90d693d00ab725685dcf64610035ed18265a3e2 | |
parent | f9584929e365745799e22e02b42ce4d0b28a5954 (diff) |
lint fixes
-rw-r--r-- | testenv/Dockerfile | 3 | ||||
-rw-r--r-- | testenv/tox.ini | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/testenv/Dockerfile b/testenv/Dockerfile index 67fcd748..6373345f 100644 --- a/testenv/Dockerfile +++ b/testenv/Dockerfile @@ -9,6 +9,8 @@ RUN echo 'Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch' > /etc RUN pacman --noconfirm --ask=4 -Syy \ && pacman --needed --noconfirm --ask=4 -S \ + archlinux-keyring \ + && pacman --needed --noconfirm --ask=4 -S \ glibc \ pacman \ openssl \ @@ -17,7 +19,6 @@ RUN pacman --noconfirm --ask=4 -Syy \ && pacman --noconfirm --ask=4 -Syu \ && pacman --needed --noconfirm --ask=4 -S \ p11-kit \ - archlinux-keyring \ ca-certificates \ ca-certificates-mozilla \ ca-certificates-utils \ diff --git a/testenv/tox.ini b/testenv/tox.ini index 5ca65f5d..8ebbdb2e 100644 --- a/testenv/tox.ini +++ b/testenv/tox.ini @@ -3,7 +3,7 @@ envlist = flake8, pylint, mypy, vulture, pytest, eslint, htmlhint, shellcheck skipsdist = true [testenv] -basepython = python3.12 +basepython = python3.13 sitepackages = true changedir = /src |