mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-08-02 04:21:59 +03:00
sanitytest: stop passing API XML path into sanity test
We want to move over to make sanitytest.py operate like a more normal test script, which means making it self contained. The test already knows how to find the libvirt API XML path using pkg-config and if an override location is required, this can be done by pointing $PKG_CONFIG_PATH to a suitable place. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
4
setup.py
4
setup.py
@ -304,15 +304,13 @@ class my_test(Command):
|
||||
Run test suite
|
||||
"""
|
||||
|
||||
apis = get_api_xml_files()
|
||||
|
||||
if "PYTHONPATH" in os.environ:
|
||||
os.environ["PYTHONPATH"] = self.build_platlib + ":" + os.environ["PYTHONPATH"]
|
||||
else:
|
||||
os.environ["PYTHONPATH"] = self.build_platlib
|
||||
|
||||
if "LIBVIRT_API_COVERAGE" in os.environ:
|
||||
self.spawn([sys.executable, "sanitytest.py", self.build_platlib, apis[0]])
|
||||
self.spawn([sys.executable, "sanitytest.py", self.build_platlib])
|
||||
pytest = self.find_pytest_path()
|
||||
subprocess.check_call([pytest])
|
||||
|
||||
|
Reference in New Issue
Block a user