9fb9198f67
...beyond booth-1.0 (commit f2d38ce), including: . support for solely manually managed tickets (9a365f9) . use asciidoctor instead of asciidoc for generating man pages (65e6a6b) - switch to using Python 3 for the tests instead of Python 2 (behind unversioned "python" references; rhbz#1555651) Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
159 lines
3.7 KiB
Diff
159 lines
3.7 KiB
Diff
From 9469ffc2d58a5673fffae8778b9c48f5605dda6a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= <jpokorny@redhat.com>
|
|
Date: Tue, 10 Jul 2018 18:41:18 +0200
|
|
Subject: [PATCH] test: remove superfluous shebangs for import-only modules
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Consequently, there's no reason to have the affected files marked as
|
|
executable.
|
|
|
|
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
|
|
---
|
|
test/arbtests.py | 2 --
|
|
test/assertions.py | 2 --
|
|
test/boothrunner.py | 2 --
|
|
test/boothtestenv.py | 2 --
|
|
test/clientenv.py | 2 --
|
|
test/clienttests.py | 2 --
|
|
test/serverenv.py | 2 --
|
|
test/servertests.py | 2 --
|
|
test/sitetests.py | 2 --
|
|
test/utils.py | 2 --
|
|
10 files changed, 20 deletions(-)
|
|
mode change 100755 => 100644 test/arbtests.py
|
|
mode change 100755 => 100644 test/assertions.py
|
|
mode change 100755 => 100644 test/boothrunner.py
|
|
mode change 100755 => 100644 test/boothtestenv.py
|
|
mode change 100755 => 100644 test/clientenv.py
|
|
mode change 100755 => 100644 test/clienttests.py
|
|
mode change 100755 => 100644 test/serverenv.py
|
|
mode change 100755 => 100644 test/servertests.py
|
|
mode change 100755 => 100644 test/sitetests.py
|
|
mode change 100755 => 100644 test/utils.py
|
|
|
|
diff --git a/test/arbtests.py b/test/arbtests.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index caba010..ef7b7f9
|
|
--- a/test/arbtests.py
|
|
+++ b/test/arbtests.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
from servertests import ServerTests
|
|
|
|
class ArbitratorConfigTests(ServerTests):
|
|
diff --git a/test/assertions.py b/test/assertions.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index 4396ab7..0b7f995
|
|
--- a/test/assertions.py
|
|
+++ b/test/assertions.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import re
|
|
|
|
class BoothAssertions:
|
|
diff --git a/test/boothrunner.py b/test/boothrunner.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index f9154e7..d981183
|
|
--- a/test/boothrunner.py
|
|
+++ b/test/boothrunner.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import os
|
|
import subprocess
|
|
import time
|
|
diff --git a/test/boothtestenv.py b/test/boothtestenv.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index 89a484a..fcd0c4d
|
|
--- a/test/boothtestenv.py
|
|
+++ b/test/boothtestenv.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import os
|
|
import subprocess
|
|
import time
|
|
diff --git a/test/clientenv.py b/test/clientenv.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index fcd40fa..73b2791
|
|
--- a/test/clientenv.py
|
|
+++ b/test/clientenv.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
from boothtestenv import BoothTestEnvironment
|
|
from boothrunner import BoothRunner
|
|
|
|
diff --git a/test/clienttests.py b/test/clienttests.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index 61b691b..c4b9d8a
|
|
--- a/test/clienttests.py
|
|
+++ b/test/clienttests.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import string
|
|
|
|
from clientenv import ClientTestEnvironment
|
|
diff --git a/test/serverenv.py b/test/serverenv.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index d0467b9..c6d4e30
|
|
--- a/test/serverenv.py
|
|
+++ b/test/serverenv.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import os
|
|
import re
|
|
import time
|
|
diff --git a/test/servertests.py b/test/servertests.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index f574f26..39a6ffc
|
|
--- a/test/servertests.py
|
|
+++ b/test/servertests.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import copy
|
|
from pprint import pprint, pformat
|
|
import re
|
|
diff --git a/test/sitetests.py b/test/sitetests.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index dfdf6b9..6944ffe
|
|
--- a/test/sitetests.py
|
|
+++ b/test/sitetests.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
from servertests import ServerTests
|
|
|
|
class SiteConfigTests(ServerTests):
|
|
diff --git a/test/utils.py b/test/utils.py
|
|
old mode 100755
|
|
new mode 100644
|
|
index ceeef98..5b70cfc
|
|
--- a/test/utils.py
|
|
+++ b/test/utils.py
|
|
@@ -1,5 +1,3 @@
|
|
-#!/usr/bin/python
|
|
-
|
|
import subprocess
|
|
import re
|
|
|
|
--
|
|
2.18.0.rc2
|
|
|