-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better run.sh
tests execution
#99
Conversation
Environment is actually logged with the command execution, if specified. Note also this line where it is defined. Anyway, to make it apparent, I've added separate entries for all 3 "additonal test entries": duration, path, environment. Or did you mean other than modified |
@lukaszachy PTAL, and please see the added note. |
Congratulations! One of the builds has completed. 🍾 You can install the built RPMs by following these steps:
Please note that the RPMs should be used only in a testing environment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks for the improvement, @pvalena. I have two comments: I've tried to run one of the
but I've noticed that the test fails because it cannot find beakerlib journal:
This seems to be related to the modified environment, probably missing the And second: What about doing something like this before executing the test script?
Being able to check all variables defined in the environment could be useful and I think that was the original use case reported by @lukaszachy in #93. |
Oh, would you rather have I'll look into the error, the behaviour was actually not changed with this PR, so it's broken at this point (I've missed propagating the ENV var for beakerlib to the right place). Should be easy fix. |
I think storing the env to a file in the workdir should be enough. @lukaszachy, what do you think?
Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handling environment variables needs to be fixed before we can verify this is working as expected.
@lukaszachy, how the environment details should be stored? See comments above for details. |
I usually record output of |
I think it would be good to address the execution problem as part of this pull request too, so that we can actually test/verify it is working as expected. @pvalena, could you have a look at this soon? This is blocking test execution under modified environment. Thanks. |
I believe I've adressed the issues. |
I did however encounter errors, during installation, or (project_venv) $ project_venv/bin/pip install --upgrade '.[all]'
[ . . . ]
Installing collected packages: libvirt-python, testcloud, tmt
Running setup.py install for libvirt-python ... error
ERROR: Command errored out with exit status 1:
command: /home/lpcs/lpcsf-new/test/tmt/project_venv/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-57hdtqcn/libvir
t-python/setup.py'"'"'; __file__='"'"'/tmp/pip-install-57hdtqcn/libvirt-python/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().re
place('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-5so_mb4a/install-record.txt --singl
e-version-externally-managed --compile --install-headers /home/lpcs/lpcsf-new/test/tmt/project_venv/include/site/python3.8/libvirt-python
cwd: /tmp/pip-install-57hdtqcn/libvirt-python/
Complete output (13 lines):
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc' to the PKG_CONFIG_PATH environment variable Package 'libvirt', required by 'virtual:world', not found Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libvirt', required by 'virtual:world', not found
running install
running build
/usr/bin/pkg-config --print-errors --atleast-version=0.9.11 libvirt
Package 'libvirt' was not found
error: command '/usr/bin/pkg-config' failed with exit status 1
----------------------------------------
ERROR: Command errored out with exit status 1: /home/lpcs/lpcsf-new/test/tmt/project_venv/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"
'/tmp/pip-install-57hdtqcn/libvirt-python/setup.py'"'"'; __file__='"'"'/tmp/pip-install-57hdtqcn/libvirt-python/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"',
open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-5so_mb4a/install-record.txt --single-version-externally-managed --compile --install-headers /home/lpcs/lpcsf-new/test/tmt/project_venv/include/site/python3.8/libvirt-python Check the logs for full command output. WARNING: You are using pip version 19.2.3, however version 20.0.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command. I did install dependencies using dnf- testcloud, vagrant-libvirt, python-libvirt ... but I still get the error above. (I do have even |
I do have an error too, with (project_venv) ➜ tmt git:(run.sh) tmt run -d
Traceback (most recent call last):
File "/home/lpcs/lpcsf-new/test/tmt/project_venv/bin/tmt", line 7, in <module>
exec(compile(f.read(), __file__, 'exec'))
File "/home/lpcs/lpcsf-new/test/tmt/bin/tmt", line 7, in <module>
import tmt.cli
File "/home/lpcs/lpcsf-new/test/tmt/tmt/__init__.py", line 3, in <module>
from tmt.base import Tree, Test, Plan, Story, Run
File "/home/lpcs/lpcsf-new/test/tmt/tmt/base.py", line 15, in <module>
import tmt.steps.provision
File "/home/lpcs/lpcsf-new/test/tmt/tmt/steps/provision/__init__.py", line 11, in <module>
from tmt.steps.provision import vagrant, localhost, podman, testcloud
File "/home/lpcs/lpcsf-new/test/tmt/tmt/steps/provision/testcloud.py", line 7, in <module>
import testcloud.image
ModuleNotFoundError: No module named 'testcloud' |
@pvalena |
I tried to run
Similar errors appear when running in a container. Using virtual I see also error messages:
This does not seem to be working. |
Yes, I know, I did not get around to debug it :( . I'm getting the same error. |
Thanks for the update. Seems to be working now. Only the |
Oh, that's a bug. It should go under every test path. So maybe it's because your path was |
Ok, so one part fixed:
|
Actually, the runtime may be anywhere the user wants. Specifying |
handle environment and path explicitly using env, also refactor a bit.
Thanks for the update. With the latest change works fine. Tested with local, virtual and container. |
YAW, thanks for testing! |
Adresses #93.