Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870e0e8 commit 5cb823dCopy full SHA for 5cb823d
1 file changed
Lib/test/test_compileall.py
@@ -222,7 +222,7 @@ def test_legacy(self):
222
def test_quiet(self):
223
noise = subprocess.getoutput('{} -m compileall {}'.format(
224
sys.executable, self.pkgdir))
225
- quiet = subprocess.getoutput(('{} -m compileall {}'.format(
+ quiet = subprocess.getoutput(('{} -m compileall -f -q {}'.format(
226
sys.executable, self.pkgdir)))
227
self.assertGreater(len(noise), len(quiet))
228
0 commit comments