PEP8 fixes in regress.py

This commit is contained in:
mrg 2020-10-05 15:56:12 -07:00
parent cb35c0aff4
commit a145a37cf7
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
import re
import unittest
import sys,os
import sys, os
sys.path.append(os.getenv("OPENRAM_HOME"))
import globals
@ -47,12 +47,12 @@ suite = unittest.TestSuite()
load = unittest.defaultTestLoader.loadTestsFromModule
suite.addTests(map(load, modules))
test_runner = unittest.TextTestRunner(verbosity=2,stream=sys.stderr)
test_runner = unittest.TextTestRunner(verbosity=2, stream=sys.stderr)
test_result = test_runner.run(suite)
import verify
verify.print_drc_stats()
verify.print_lvs_stats()
verify.print_pex_stats()
verify.print_pex_stats()
sys.exit(not test_result.wasSuccessful())