We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7aeb90 commit 496c04aCopy full SHA for 496c04a
crates/fig_desktop/src/install.rs
@@ -924,8 +924,12 @@ echo "{binary_name} {version}"
924
assert_eq!(parse_version("cli 1.2.3"), "1.2.3");
925
}
926
927
+ static INSTALL_TEST_LOCK: tokio::sync::Mutex<()> = tokio::sync::Mutex::const_new(());
928
+
929
#[tokio::test]
930
async fn test_linux_appimage_install_on_fresh_system() {
931
+ let _lock = INSTALL_TEST_LOCK.lock().await;
932
933
tracing_subscriber::fmt::try_init().ok();
934
935
// Given
@@ -942,6 +946,8 @@ echo "{binary_name} {version}"
942
946
943
947
944
948
async fn test_linux_appimage_install_when_installed_binaries_have_old_version() {
949
950
945
951
952
953
0 commit comments