Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ install:
$(IPROG) bin/hfx_filename $(DESTDIR)$(OPTDIR)/bin
$(IPROG) bin/perfmon $(DESTDIR)$(OPTDIR)/bin
$(IPROG) bin/xe-scsi-dev-map $(DESTDIR)$(OPTDIR)/bin
$(IPROG) bin/static-vdis $(DESTDIR)$(OPTDIR)/bin
$(IPROG) extensions/pool_update.apply $(DESTDIR)$(EXTENSIONDIR)
$(IPROG) extensions/pool_update.precheck $(DESTDIR)$(EXTENSIONDIR)
$(IPROG) extensions/Test.test $(DESTDIR)$(EXTENSIONDIR)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion python3/tests/test_static_vdis.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def static_vdis() -> ModuleType:
"""Test fixture to return the static-vdis module, mocked to avoid dependencies."""
with mocked_modules("XenAPI", "inventory"):
return import_file_as_module("scripts/static-vdis")
return import_file_as_module("python3/bin/static-vdis")


# Hide pylint warnings for redefined-outer-name from using the static_vdis fixture:
Expand Down
1 change: 0 additions & 1 deletion scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ install:
$(IPROG) xe-edit-bootloader $(DESTDIR)$(OPTDIR)/bin
$(IPROG) xe-get-network-backend $(DESTDIR)$(OPTDIR)/bin
$(IPROG) xe-enable-all-plugin-metrics $(DESTDIR)$(OPTDIR)/bin
$(IPROG) static-vdis $(DESTDIR)$(OPTDIR)/bin
$(IPROG) with-vdi $(DESTDIR)$(OPTDIR)/debug
$(IPROG) import-update-key $(DESTDIR)$(OPTDIR)/debug
$(IPROG) pool.conf $(DESTDIR)$(ETCXENDIR)
Expand Down