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:
Lubomír Sedlář 2019-10-04 15:20:01 +02:00
parent 26962d94ca
commit 43fb06e00f
33 changed files with 0 additions and 175 deletions

View file

@ -1,7 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
import mock
import os
@ -218,7 +216,3 @@ class CreateIsoScriptTest(helpers.PungiTestCase):
'--template=%s/jigdo/DP-1.0-20160405.t.3-x86_64.iso.template' % self.topdir,
'--no-servers-section', '--report=noprogress', self.topdir + '/os//'])]
)
if __name__ == '__main__':
unittest.main()