You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 5 test function which are causing some trouble in the build environment of the iredis package for openSUSE: test_using_pager_when_rows_too_high, test_using_pager_works_for_help, test_pager_works_for_peek, test_using_pager_from_config, test_using_pager_from_config_when_env_config_both_set
All of them fail in the child.expect(TEST_PAGER_BOUNDARY_NUMBER) / child.expect(TEST_PAGER_BOUNDARY) step.
To investigate this a bit, I redirected the output of the process to stdout to see what iredis did output (with child.logfile = sys.stdout.buffer):
the pager variable is correctly set to /usr/bin/python3.11 /home/abuild/rpmbuild/BUILD/iredis-1.15.0/tests/cli_tests/wrappager.py ---boundary--- (and executing it also works).
I also checked if setting the default pager in the client.py works, which is the case (branch Default pager found in PAGER environment variable).
But it still appears the pager isn't called as expected.
Do you have an idea, what could be the cause for this?
Using iredis version 1.15.0 and pexect version 4.9.0.
The full build log is here: iredis_build.log
The text was updated successfully, but these errors were encountered:
There are 5 test function which are causing some trouble in the build environment of the iredis package for openSUSE:
test_using_pager_when_rows_too_high
,test_using_pager_works_for_help
,test_pager_works_for_peek
,test_using_pager_from_config
,test_using_pager_from_config_when_env_config_both_set
All of them fail in the
child.expect(TEST_PAGER_BOUNDARY_NUMBER)
/child.expect(TEST_PAGER_BOUNDARY)
step.To investigate this a bit, I redirected the output of the process to stdout to see what iredis did output (with
child.logfile = sys.stdout.buffer
):There is indeed no
---boundary---
in the output.the pager variable is correctly set to
/usr/bin/python3.11 /home/abuild/rpmbuild/BUILD/iredis-1.15.0/tests/cli_tests/wrappager.py ---boundary---
(and executing it also works).I also checked if setting the default pager in the
client.py
works, which is the case (branchDefault pager found in PAGER environment variable
).But it still appears the pager isn't called as expected.
Do you have an idea, what could be the cause for this?
Using iredis version 1.15.0 and pexect version 4.9.0.
The full build log is here: iredis_build.log
The text was updated successfully, but these errors were encountered: