blob: 818a012b6b25b7684d5feb1f361200966345e011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[tox]
min_version = 4.0
skipsdist = true
env_list = py3{10,11,12}-{default,minimal,custom}
[testenv]
description = check template rendering stability
deps =
jinja2
allowlist_externals = /usr/bin/diff
commands =
python --version
default: python pambase.py
default: diff -Nru tests/rendered/default stack
minimal: python pambase.py --minimal
minimal: diff -Nru tests/rendered/minimal stack
custom: python pambase.py --elogind --nullok --passwdqc --sha512
custom: diff -Nru tests/rendered/custom stack
|