Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5cb823d

Browse files
committed
Fix one compileall test (#10453). Patch by Michele Orrù.
1 parent 870e0e8 commit 5cb823d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_compileall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def test_legacy(self):
222222
def test_quiet(self):
223223
noise = subprocess.getoutput('{} -m compileall {}'.format(
224224
sys.executable, self.pkgdir))
225-
quiet = subprocess.getoutput(('{} -m compileall {}'.format(
225+
quiet = subprocess.getoutput(('{} -m compileall -f -q {}'.format(
226226
sys.executable, self.pkgdir)))
227227
self.assertGreater(len(noise), len(quiet))
228228

0 commit comments

Comments
 (0)