aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended/pywbemtools
AgeCommit message (Collapse)Author
2021-08-03Convert to new override syntaxMartin Jansa
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2021-05-11python3-pywbemtools: Upgrade 0.8.1 -> 0.9.0Leon Anavi
Upgrade to release 0.9.0: - Modified the --timestats general option from boolean to choice with 3 choices for when statistics are displayed (after each command or via a command). - Fixed a ValueError on Windows that was raised when the connections file was not on the home drive. - Limit click package to < 8.0 because of a) incompatibility with python 2.7, b) incompatibility between click 8.0 and clicl-repl. - Limit mock package to lt 4.0.3 to avoid issue issue that causes test failure. - Fix issue caused by mock package version 4.0.3 by creating replacements for warnings.warn and warnings.warn_explicit functions and removing the use of the patch decorator in pywbemcli.py before the definition of the cli function. - Fixes issue where in pywbemcli the --timeout and --use-pull general options were not always correctly included in the new object context in interactive mode if they were specified on the interactive mode cmd line. - Fixed issue in tests with use of stdin and inputting the instance path for instance get and instance delete. This was a test setup issue and not a code issue. - Mitigated the coveralls HTTP status 422 by pinning coveralls-python to <3.0.0. - Fix issue where documentation index disappeared when we changed the documentation theme - Test: Fixed behavior of 'pdb' test condition, which is supposed to stop in the pdb debugger before executing the command function, but did immediately leave the debugger again because of redirections of the standard streams. The debugger now properly comes up when 'pdb' is specified as a condition. - Test: Fixed restoring of environment variables that are modified by testcases, and displaying of PYWBEMCLI environment variables during testing in verbose mode. - Change MOFCompiler.add_mof/remove_mof() to only display exceptions received if not MOFCompileError since the MOF compiler logs all MOFCompileError exceptions. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-02-05python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1Leon Anavi
Upgrade to release 0.8.1: - Fixed a ValueError on Windows that was raised when the connections file was not on the home drive. - Limit click package to < 8.0 because of a) incompatibility with python 2.7, b) incompatibility between click 8.0 and clicl-repl. - Limit mock package to lt 4.0.3 to avoid issue issue that causes test failure. - Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick up fixes. - Migrated from Travis and Appveyor to GitHub Actions. This required several changes in package dependencies for development. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19python3-pywbemtools: Upgrade 0.7.3 -> 0.8.0Leon Anavi
Upgrade to release 0.8.0: - Moving the commands “server profiles” and “serve centralinsts” to the new group profiles with the commmand names “profile list” and “profile centralinsts” added a command group and removed 2 commands from the server command group. - The –deprecation-warnings / –no-deprecation-warnings general option has been remamed to –warn / –no-warn, and it now controls the display of all Python warnings. - Order display of instance names when the .? is used to pick an instance name so the same order of instance names is displayed for all versions of Python. - Pinned prompt-toolkit to <3.0 on Python 3.8 on Windows to avoid WinError 995. - Fixed exception when command entered in interactive mode, on Python 2. - Test: Default connection file does not get restored in some cases during test. - AssociationShrub produces instancename slightly different table output in some cases for pywbem 1 vs previous versions(inclusion of “/:” prefix). - Test: Fixed attempt in test_class_cmds.py to invoke a non-static method on a class object. - Fix help message for “–deprecated” to be unicode so python 2.7 help does not fail. - Upgraded nocasedict and nocaselist packages to pick up fixes. - Error in test defintion for qualdecl Indication causes failure with pywbem i.1.0 where mocker validates qualifiers scopes. - Test: Preventive fix for potential issue with virtualenv raising AttributeError during installtest on Python 3.4. - Test: Added checking for no expected warning. - Fixed incorrect property order in instance table output, where key properties were not ordered before non-key properties but ordered along with them. - Docs/Test: Fixed failing install of Jinja2 on Python 3.4 by adding it to dev-requirements.txt and pinning it to <2.11 for Python 3.4. - Test: Aligned qualifier definitions in test MOF with CIM Schema. - Upgraded pywbem to 1.1.1 to pick up fixes and enhancements. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13python3-pywbemtools: Upgrade 0.7.2 -> 0.7.3Leon Anavi
Upgrade to release 0.7.3: - Docs/Test: Fixed failing install of Jinja2 on Python 3.4 by adding it to dev-requirements.txt and pinning it to <2.11 for Python 3.4. - Fixed incorrect property order in instance table output, where key properties were not ordered before non-key properties but ordered along with them. - Test: Fixed qualifier definitions in qualifier_filter_model.mof to accomodate improved MOF compiler in pywbem 1.1.0. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2Leon Anavi
Upgrade to release 0.7.2: - Test: Fixed attempt in test_class_cmds.py to invoke a non-static method on a class object. - Test: Preventive fix for potential issue with virtualenv raising AttributeError during installtest on Python 3.4. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-08-25python3-pywbemtools: Add recipeLeon Anavi
Add release 0.7.1 of the python client tools to work with WBEM Servers using the PyWBEM API: - Pinned prompt-toolkit to <3.0 on Python 3.8 on Windows to avoid WinError 995 - Fixed exception when command entered in interactive mode, on Python 2 - Test: Default connection file does not get restored in some cases during test. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>