File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ const availablePythons = (() => {
137
137
) ;
138
138
} else {
139
139
// For running outside of CI
140
- binaries . push ( 'python3 ' ) ;
140
+ binaries . push ( 'python ' ) ;
141
141
}
142
142
const exe = process . platform === 'win32' ? '.exe' : '' ;
143
143
for ( const bin of binaries ) {
@@ -1742,12 +1742,10 @@ test('poetry py3.9 fails packaging if poetry.lock is missing and flag requirePoe
1742
1742
1743
1743
const { stdout : path } = npm ( [ 'pack' , '../..' ] ) ;
1744
1744
npm ( [ 'i' , path ] ) ;
1745
- const { stderr , stdout } = sls ( [ 'package' ] , {
1745
+ const { stdout } = sls ( [ 'package' ] , {
1746
1746
env : { requirePoetryLockFile : 'true' , slim : 'true' } ,
1747
1747
noThrow : true ,
1748
1748
} ) ;
1749
- console . log ( 'stderr' , stderr ) ;
1750
- console . log ( 'stdout' , stdout ) ;
1751
1749
t . true (
1752
1750
stdout . includes (
1753
1751
'poetry.lock file not found - set requirePoetryLockFile to false to disable this error'
You can’t perform that action at this time.
0 commit comments