Skip to content

Commit

Permalink
delint
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Oct 7, 2016
1 parent 69188a9 commit fddc22d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utest.py
Expand Up @@ -8,9 +8,9 @@
if __name__ == '__main__':
sys.path.insert(0, os.path.realpath('..'))
if len(sys.argv) > 1:
pattern=sys.argv[1]
pattern = sys.argv[1]
else:
pattern='test*.py'
pattern = 'test*.py'
suites = unittest.defaultTestLoader.discover('.', pattern)
if not unittest.TextTestRunner(verbosity=2).run(suites).wasSuccessful():
sys.exit(1)

0 comments on commit fddc22d

Please sign in to comment.