File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def run(*argv, expect_exit_code=0):
50
50
else :
51
51
os .chdir (tmp_dir )
52
52
53
- cmd = " " .join (shlex . quote ( x ) for x in argv )
53
+ cmd = shlex .join (argv )
54
54
print ("$ " + cmd )
55
55
exit_code = os .system (cmd )
56
56
if exit_code != expect_exit_code :
@@ -123,6 +123,7 @@ def test_dist(dist):
123
123
"--strict" ,
124
124
"--install-types" ,
125
125
"--non-interactive" ,
126
+ "--ignore-missing-imports" ,
126
127
os .path .join (
127
128
base_dir , "test_elasticsearch_serverless/test_types/async_types.py"
128
129
),
@@ -148,6 +149,7 @@ def test_dist(dist):
148
149
"--strict" ,
149
150
"--install-types" ,
150
151
"--non-interactive" ,
152
+ "--ignore-missing-imports" ,
151
153
os .path .join (
152
154
base_dir , "test_elasticsearch_serverless/test_types/sync_types.py"
153
155
),
You can’t perform that action at this time.
0 commit comments