redfish-interop-validator 2.3.2__tar.gz → 2.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/LICENSE.md +1 -1
- {redfish_interop_validator-2.3.2/redfish_interop_validator.egg-info → redfish_interop_validator-2.3.4}/PKG-INFO +2 -2
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/README.md +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/RedfishInteropValidator.py +2 -2
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/RedfishLogo.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/config.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/helper.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/interop.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/logger.py +2 -2
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/profile.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/session.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/tohtml.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/traverseInterop.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/validateResource.py +1 -1
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4/redfish_interop_validator.egg-info}/PKG-INFO +2 -2
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/setup.py +2 -2
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/AUTHORS.md +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator/__init__.py +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator.egg-info/SOURCES.txt +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator.egg-info/dependency_links.txt +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator.egg-info/entry_points.txt +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator.egg-info/requires.txt +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/redfish_interop_validator.egg-info/top_level.txt +0 -0
- {redfish_interop_validator-2.3.2 → redfish_interop_validator-2.3.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
BSD 3-Clause License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017-
|
|
3
|
+
Copyright (c) 2017-2026, Contributing Member(s) of Distributed Management Task
|
|
4
4
|
Force, Inc.. All rights reserved.
|
|
5
5
|
|
|
6
6
|
Redistribution and use in source and binary forms, with or without modification,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redfish_interop_validator
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: Redfish Interop Validator
|
|
5
5
|
Home-page: https://github.com/DMTF/Redfish-Interop-Validator
|
|
6
6
|
Author: DMTF, https://www.dmtf.org/standards/feedback
|
|
@@ -28,7 +28,7 @@ Dynamic: license-file
|
|
|
28
28
|
Dynamic: requires-dist
|
|
29
29
|
Dynamic: summary
|
|
30
30
|
|
|
31
|
-
Copyright 2017-
|
|
31
|
+
Copyright 2017-2026 DMTF. All rights reserved.
|
|
32
32
|
|
|
33
33
|
# Redfish Interop Validator
|
|
34
34
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
# Copyright Notice:
|
|
3
|
-
# Copyright 2017-
|
|
3
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
4
4
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
|
|
5
5
|
|
|
6
6
|
import os
|
|
@@ -19,7 +19,7 @@ from redfish_interop_validator.validateResource import validateSingleURI, valida
|
|
|
19
19
|
from redfish_interop_validator.interop import testResultEnum
|
|
20
20
|
from redfish_interop_validator import logger
|
|
21
21
|
|
|
22
|
-
tool_version = '2.3.
|
|
22
|
+
tool_version = '2.3.4'
|
|
23
23
|
|
|
24
24
|
def main(argslist=None, configfile=None):
|
|
25
25
|
"""Main command
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright Notice:
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
3
3
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
|
|
4
4
|
|
|
5
5
|
import configparser
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
# Copyright Notice:
|
|
3
|
-
# Copyright 2017-
|
|
3
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
4
4
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
|
|
5
5
|
|
|
6
6
|
import re
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright Notice:
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
3
3
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/main/LICENSE.md
|
|
4
4
|
|
|
5
5
|
import logging
|
|
@@ -61,7 +61,7 @@ class RecordFormatter(logging.Formatter):
|
|
|
61
61
|
super().__init__()
|
|
62
62
|
|
|
63
63
|
def format(self, record):
|
|
64
|
-
msg = "{} - {}".format(record.levelname, record.
|
|
64
|
+
msg = "{} - {}".format(record.levelname, record.getMessage())
|
|
65
65
|
result = record.__dict__.get('result')
|
|
66
66
|
record.result = result
|
|
67
67
|
uri = record.__dict__.get('uri', self.current_uri[-1])
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright Notice:
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
3
3
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
|
|
4
4
|
|
|
5
5
|
from datetime import datetime, timedelta
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright Notice:
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
3
3
|
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
|
|
4
4
|
|
|
5
5
|
import logging
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redfish_interop_validator
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: Redfish Interop Validator
|
|
5
5
|
Home-page: https://github.com/DMTF/Redfish-Interop-Validator
|
|
6
6
|
Author: DMTF, https://www.dmtf.org/standards/feedback
|
|
@@ -28,7 +28,7 @@ Dynamic: license-file
|
|
|
28
28
|
Dynamic: requires-dist
|
|
29
29
|
Dynamic: summary
|
|
30
30
|
|
|
31
|
-
Copyright 2017-
|
|
31
|
+
Copyright 2017-2026 DMTF. All rights reserved.
|
|
32
32
|
|
|
33
33
|
# Redfish Interop Validator
|
|
34
34
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright Notice:
|
|
2
|
-
# Copyright 2017-
|
|
2
|
+
# Copyright 2017-2026 DMTF. All rights reserved.
|
|
3
3
|
# License: BSD 3-Clause License. For full text see link:
|
|
4
4
|
# https://github.com/DMTF/Redfish-Interop-Validator/blob/main/LICENSE.md
|
|
5
5
|
|
|
@@ -11,7 +11,7 @@ with open("README.md", "r", "utf-8") as f:
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name="redfish_interop_validator",
|
|
14
|
-
version="2.3.
|
|
14
|
+
version="2.3.4",
|
|
15
15
|
description="Redfish Interop Validator",
|
|
16
16
|
long_description=long_description,
|
|
17
17
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|