fix: update tests

This commit is contained in:
egarette@silique.fr 2025-10-10 08:07:57 +02:00
parent 7ea478e2b8
commit 1683b6fd89
2 changed files with 22 additions and 3 deletions

View file

@ -13,9 +13,6 @@ license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",

View file

@ -0,0 +1,22 @@
%YAML 1.2
---
version: 1.1
condition: no # a conditional variable
variable1:
description: a first variable
disabled:
jinja: |-
{{ _.condition == "yes" }}
return_type: boolean
description: if condition is egal to "yes"
variable2:
description: a seconde variable
disabled:
jinja: |-
{{ _.condition != "yes" }}
return_type: boolean
description: if condition is not egal to "yes"
...