mirror of https://github.com/docker/compose.git
Remove logging test
It doesn't do much other than cause the remainder of the test suite to generate lots of junk output. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
cc0bfea8a1
commit
233c509f71
|
@ -1,13 +1,11 @@
|
|||
from __future__ import unicode_literals
|
||||
from __future__ import absolute_import
|
||||
import logging
|
||||
import os
|
||||
from .. import unittest
|
||||
|
||||
import docker
|
||||
import mock
|
||||
|
||||
from compose.cli import main
|
||||
from compose.cli.docopt_command import NoSuchCommand
|
||||
from compose.cli.main import TopLevelCommand
|
||||
from compose.service import Service
|
||||
|
@ -88,11 +86,6 @@ class CLITestCase(unittest.TestCase):
|
|||
with self.assertRaises(NoSuchCommand):
|
||||
TopLevelCommand().dispatch(['help', 'nonexistent'], None)
|
||||
|
||||
def test_setup_logging(self):
|
||||
main.setup_logging()
|
||||
self.assertEqual(logging.getLogger().level, logging.DEBUG)
|
||||
self.assertEqual(logging.getLogger('requests').propagate, False)
|
||||
|
||||
@mock.patch('compose.cli.main.dockerpty', autospec=True)
|
||||
def test_run_with_environment_merged_with_options_list(self, mock_dockerpty):
|
||||
command = TopLevelCommand()
|
||||
|
|
Loading…
Reference in New Issue