Quiet the byte compiling for PY2

This commit is contained in:
Erik Johnson 2018-07-17 15:35:17 -05:00
parent 9338370477
commit e7c10196da
No known key found for this signature in database
GPG key ID: 5E5583C437808F3F

View file

@ -981,7 +981,7 @@ class LazyLoaderOptimizationOrderTest(TestCase):
compileall.compile_file(self.module_file, quiet=1, optimize=1)
compileall.compile_file(self.module_file, quiet=1, optimize=2)
else:
compileall.compile_file(self.module_file)
compileall.compile_file(self.module_file, quiet=1)
# Clean up the original file so that we can be assured we're only
# loading the byte-compiled files(s).