Remove shebangs from test files
They should be executed with a runner like nose, not directly. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
26962d94ca
commit
43fb06e00f
33 changed files with 0 additions and 175 deletions
|
|
@ -1,10 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
try:
|
||||
import unittest2 as unittest
|
||||
except ImportError:
|
||||
import unittest
|
||||
import mock
|
||||
import json
|
||||
|
||||
|
|
@ -561,7 +556,3 @@ class OSBSThreadTest(helpers.PungiTestCase):
|
|||
self._assertCorrectCalls({'git_branch': 'f24-docker'}, scratch=True)
|
||||
self._assertCorrectMetadata(scratch=True)
|
||||
self._assertRepoFile()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue