Skip to content

Commit 7175a89

Browse files
committed
fix: Remove console logs
1 parent 6e0823b commit 7175a89

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const availablePythons = (() => {
137137
);
138138
} else {
139139
// For running outside of CI
140-
binaries.push('python3');
140+
binaries.push('python');
141141
}
142142
const exe = process.platform === 'win32' ? '.exe' : '';
143143
for (const bin of binaries) {
@@ -1742,12 +1742,10 @@ test('poetry py3.9 fails packaging if poetry.lock is missing and flag requirePoe
17421742

17431743
const { stdout: path } = npm(['pack', '../..']);
17441744
npm(['i', path]);
1745-
const { stderr, stdout } = sls(['package'], {
1745+
const { stdout } = sls(['package'], {
17461746
env: { requirePoetryLockFile: 'true', slim: 'true' },
17471747
noThrow: true,
17481748
});
1749-
console.log('stderr', stderr);
1750-
console.log('stdout', stdout);
17511749
t.true(
17521750
stdout.includes(
17531751
'poetry.lock file not found - set requirePoetryLockFile to false to disable this error'

0 commit comments

Comments
 (0)