mirror of
https://github.com/aclist/dztui.git
synced 2026-08-27 10:17:31 +02:00
chore: test build version after export
This commit is contained in:
parent
6ec77f6542
commit
26ee560cb4
@ -110,7 +110,7 @@ class RightPanel(Gtk.Box):
|
||||
|
||||
def _on_lan_page_init(self, emitter: "Emitter") -> None:
|
||||
self.filters_vbox.set_sensitive(False)
|
||||
self.refresh_button.set_sensitive(False)
|
||||
#self.refresh_button.set_sensitive(False)
|
||||
|
||||
def _on_servers_loaded(self, emitter: "Emitter", context: "ServerTab") -> None:
|
||||
# TODO: similar logic on notebook page change
|
||||
|
||||
@ -45,3 +45,9 @@ if proc.returncode == 0:
|
||||
with tarfile.open(tarpath, "w:gz") as tar:
|
||||
tar.add(release_exe, arcname=appname)
|
||||
print(f"Wrote tarfile to '{tarpath}'")
|
||||
|
||||
proc = subprocess.run([release_exe, "-v"], capture_output=True, text=True)
|
||||
assert proc.stdout.rstrip() == version
|
||||
|
||||
release_exe.unlink()
|
||||
Path(wheel).unlink()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user