Test on Debian Bookworm

This commit is contained in:
Alexandre Iooss 2023-08-05 13:48:59 +02:00
parent b00c2e07fd
commit 06af7954b1
2 changed files with 15 additions and 1 deletions

View file

@ -15,9 +15,22 @@ py39-django22:
python3-pip python3-setuptools tox git python3-pip python3-setuptools tox git
script: tox -e py39-django22 script: tox -e py39-django22
# Debian Bookworm
py311-django32:
stage: test
image: debian:bookworm
before_script:
- >
apt-get update &&
apt-get install --no-install-recommends -y
python3-django python3-django-crispy-forms
python3-pil python3-django-allauth
python3-pip python3-setuptools tox git
script: tox -e py311-django32
linters: linters:
stage: quality-assurance stage: quality-assurance
image: debian:bullseye image: debian:bookworm
before_script: before_script:
- apt-get update && apt-get install -y tox - apt-get update && apt-get install -y tox
script: tox -e linters script: tox -e linters

View file

@ -1,6 +1,7 @@
[tox] [tox]
envlist = envlist =
py39-django{22,32} py39-django{22,32}
py311-django{22,32}
linters linters
skipsdist = True skipsdist = True