diff --git a/README.md b/README.md index 51b1645..39eed9a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# rougail-user-data-file +# rougail-user-data-yaml diff --git a/pyproject.toml b/pyproject.toml index 11b2838..4c093a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/tests/results/04_5disabled_calculation_boolean/errors/all.json b/tests/results/04_5disabled_calculation_boolean/errors/all.json new file mode 100644 index 0000000..50d411b --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/errors/all.json @@ -0,0 +1,6 @@ +{ + "errors": [], + "warnings": [ + "variable \"rougail.variable2\" (a seconde variable) is disabled, it will be ignored when loading from the YAML file \"tests/results/04_5disabled_calculation_boolean/file/all.yml\"" + ] +} \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_boolean/errors/mandatories.json b/tests/results/04_5disabled_calculation_boolean/errors/mandatories.json new file mode 100644 index 0000000..b8ff0be --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/errors/mandatories.json @@ -0,0 +1,6 @@ +{ + "errors": [], + "warnings": [ + "variable \"rougail.variable2\" (a seconde variable) is disabled, it will be ignored when loading from the YAML file \"tests/results/04_5disabled_calculation_boolean/file/mandatories.yml\"" + ] +} \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_boolean/file/all.yml b/tests/results/04_5disabled_calculation_boolean/file/all.yml new file mode 100644 index 0000000..1e90032 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/file/all.yml @@ -0,0 +1,7 @@ +{ + "rougail": { + "condition": "string1", + "variable1": "string1", + "variable2": "string1" + } +} \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_boolean/file/all_exclude.yml b/tests/results/04_5disabled_calculation_boolean/file/all_exclude.yml new file mode 100644 index 0000000..1e90032 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/file/all_exclude.yml @@ -0,0 +1,7 @@ +{ + "rougail": { + "condition": "string1", + "variable1": "string1", + "variable2": "string1" + } +} \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_boolean/file/mandatories.yml b/tests/results/04_5disabled_calculation_boolean/file/mandatories.yml new file mode 100644 index 0000000..02876f6 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/file/mandatories.yml @@ -0,0 +1,6 @@ +{ + "rougail": { + "variable1": "string1", + "variable2": "string1" + } +} \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_boolean/makedict/all.json b/tests/results/04_5disabled_calculation_boolean/makedict/all.json new file mode 100644 index 0000000..7cebec1 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/makedict/all.json @@ -0,0 +1,4 @@ +{ + "rougail.condition": "string1", + "rougail.variable1": "string1" +} diff --git a/tests/results/04_5disabled_calculation_boolean/makedict/mandatories.json b/tests/results/04_5disabled_calculation_boolean/makedict/mandatories.json new file mode 100644 index 0000000..dfcc3b1 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.condition": "no", + "rougail.variable1": "string1" +}