diff options
author | Vratko Polak <vrpolak@cisco.com> | 2023-10-19 11:53:50 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2023-10-19 10:20:37 +0000 |
commit | 9fce8f00642247daba7b8fd132f1fa8913738536 (patch) | |
tree | 91a46242d76f3d8fe16aa0964c2c9db24ffb8878 | |
parent | 377412dfd433b993876025bc8af8df8a7ee01133 (diff) |
fix(model): bump schema version for new MLR
Change-Id: I35230692241a5f54420ece3340530f6c608828bb
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
(cherry picked from commit 382b362a165982218e3c6cc61b721391bb50c6b3)
-rw-r--r-- | resources/libraries/python/Constants.py | 2 | ||||
-rw-r--r-- | resources/model_schema/test_case.schema.yaml | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index a25cd6a30e..01b64c949d 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -120,7 +120,7 @@ class Constants: """Constants used in CSIT.""" # Version for CSIT data model. See docs/model/. - MODEL_VERSION = u"1.4.0" + MODEL_VERSION = u"1.5.1" # Global off-switch in case JSON export is large or slow. EXPORT_JSON = get_optimistic_bool_from_env(u"EXPORT_JSON") diff --git a/resources/model_schema/test_case.schema.yaml b/resources/model_schema/test_case.schema.yaml index b657906667..f0d350e337 100644 --- a/resources/model_schema/test_case.schema.yaml +++ b/resources/model_schema/test_case.schema.yaml @@ -13,7 +13,7 @@ --- -$id: https://fd.io/FIXME/CSIT/UTI/test_case/info/1.5.0 +$id: https://fd.io/FIXME/CSIT/UTI/test_case/info/1.5.1 $schema: https://json-schema.org/draft/2020-12/schema description: >- Schema for output of test case. @@ -141,24 +141,24 @@ allOf: ndr: description: >- The results refer to search for NDR + The accepted loss ratio for NDR is exact zero. + Exceed ratio is 50%. For PPS, lowerbound is aggregate (bidirectional) conditional throughput - (forwarding rate across good long trials), + (median forwarding rate among long trials), upperbound is missing. - The accepted loss ratio for NDR is exact zero. - Exceed ratio is 50%. Note that packets the Traffic Generator did not send are also counted as lost packets. $ref: "#/$defs/macros/lower_and_maybe_upper_rate" pdr: description: >- The results refer to search for PDR. + The accepted loss ratio for PDR is 0.5%. + Exceed ratio is 50%. For PPS, lowerbound is aggregate (bidirectional) conditional throughput - (forwarding rate across good long trials), + (median forwarding rate among long trials), upperbound is missing. - The accepted loss ratio for PDR is 0.5%. - Exceed ratio is 50%. Note that packets the Traffic Generator did not send are also counted as lost packets. $ref: "#/$defs/macros/lower_and_maybe_upper_rate" @@ -366,7 +366,7 @@ allOf: CSIT model version (semver format) the exporting code adhered to. type: string - const: 1.4.0 + const: 1.5.1 required: - duration - dut_type |