Merge "Remove use of hacking lib" into feature/zuulv3
diff --git a/tests/base.py b/tests/base.py
index 2fbdb88..2568ec8 100755
--- a/tests/base.py
+++ b/tests/base.py
@@ -1621,7 +1621,7 @@
# from libraries that zuul depends on such as gear.
log_defaults_from_env = os.environ.get(
'OS_LOG_DEFAULTS',
- 'git.cmd=INFO,kazoo.client=WARNING,gear=INFO')
+ 'git.cmd=INFO,kazoo.client=WARNING,gear=INFO,paste=INFO')
if log_defaults_from_env:
for default in log_defaults_from_env.split(','):
diff --git a/tests/unit/test_github_driver.py b/tests/unit/test_github_driver.py
index f2a6e5b..f918218 100644
--- a/tests/unit/test_github_driver.py
+++ b/tests/unit/test_github_driver.py
@@ -12,17 +12,12 @@
# License for the specific language governing permissions and limitations
# under the License.
-import logging
import re
from testtools.matchers import MatchesRegex
import time
from tests.base import ZuulTestCase, simple_layout, random_sha1
-logging.basicConfig(level=logging.DEBUG,
- format='%(asctime)s %(name)-32s '
- '%(levelname)-8s %(message)s')
-
class TestGithubDriver(ZuulTestCase):
config_file = 'zuul-github-driver.conf'
diff --git a/tests/unit/test_multi_driver.py b/tests/unit/test_multi_driver.py
index e38fc67..a1107de 100644
--- a/tests/unit/test_multi_driver.py
+++ b/tests/unit/test_multi_driver.py
@@ -13,13 +13,8 @@
# License for the specific language governing permissions and limitations
# under the License.
-import logging
from tests.base import ZuulTestCase
-logging.basicConfig(level=logging.DEBUG,
- format='%(asctime)s %(name)-32s '
- '%(levelname)-8s %(message)s')
-
class TestGerritAndGithub(ZuulTestCase):
config_file = 'zuul-connections-gerrit-and-github.conf'