Hide InspIRCd's output.

This commit is contained in:
Valentin Lorentz 2015-12-21 12:24:08 +01:00
parent baa7b5306e
commit 4335b909e5

View File

@ -32,7 +32,8 @@ class InspircdController(BaseServerController, DirectoryBasedController):
port=port, port=port,
)) ))
self.proc = subprocess.Popen(['inspircd', '--nofork', '--config', self.proc = subprocess.Popen(['inspircd', '--nofork', '--config',
os.path.join(self.directory, 'server.conf')]) os.path.join(self.directory, 'server.conf')],
stdout=subprocess.DEVNULL)
self.wait_for_port(self.proc, port) self.wait_for_port(self.proc, port)
def get_irctest_controller_class(): def get_irctest_controller_class():