@@ -42,7 +42,7 @@ func Test_uvPythonRunner_Run(t *testing.T) {
4242 cmd := new (mockCmd )
4343 cmd .On ("Run" , mock .Anything , repo , & CommandInstance {
4444 Name : "~/.bruin/uv" ,
45- Args : []string {"run" , "--no-config" , "--no-sync " , "--python" , "3.11" , "--module" , module },
45+ Args : []string {"run" , "--no-config" , "--no-project " , "--python" , "3.11" , "--module" , module },
4646 }).Return (assert .AnError )
4747
4848 inst := new (mockUvInstaller )
@@ -69,7 +69,7 @@ func Test_uvPythonRunner_Run(t *testing.T) {
6969 cmd := new (mockCmd )
7070 cmd .On ("Run" , mock .Anything , repo , & CommandInstance {
7171 Name : "~/.bruin/uv" ,
72- Args : []string {"run" , "--no-config" , "--no-sync " , "--python" , "3.11" , "--with-requirements" , "/path/to/requirements.txt" , "--module" , module },
72+ Args : []string {"run" , "--no-config" , "--no-project " , "--python" , "3.11" , "--with-requirements" , "/path/to/requirements.txt" , "--module" , module },
7373 }).Return (assert .AnError )
7474
7575 inst := new (mockUvInstaller )
@@ -96,7 +96,7 @@ func Test_uvPythonRunner_Run(t *testing.T) {
9696 cmd := new (mockCmd )
9797 cmd .On ("Run" , mock .Anything , repo , & CommandInstance {
9898 Name : "~/.bruin/uv" ,
99- Args : []string {"run" , "--no-config" , "--no-sync " , "--python" , "3.13" , "--with-requirements" , "/path/to/requirements.txt" , "--module" , module },
99+ Args : []string {"run" , "--no-config" , "--no-project " , "--python" , "3.13" , "--with-requirements" , "/path/to/requirements.txt" , "--module" , module },
100100 }).Return (assert .AnError )
101101
102102 inst := new (mockUvInstaller )
0 commit comments