mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
expand pyflakes list
This commit is contained in:
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
.PHONY: oragono
|
||||
|
||||
oragono:
|
||||
pyflakes3 ./irctest/controllers/oragono.py irctest/server_tests/*.py
|
||||
pyflakes3 ./irctest/cases.py ./irctest/client_mock.py ./irctest/controllers/oragono.py irctest/server_tests/*.py
|
||||
./test.py irctest.controllers.oragono
|
||||
|
@ -4,13 +4,11 @@ import socket
|
||||
import tempfile
|
||||
import unittest
|
||||
import functools
|
||||
import collections
|
||||
|
||||
import supybot.utils
|
||||
|
||||
from . import runner
|
||||
from . import client_mock
|
||||
from . import authentication
|
||||
from .irc_utils import capabilities
|
||||
from .irc_utils import message_parser
|
||||
from .exceptions import ConnectionClosed
|
||||
@ -56,7 +54,7 @@ class _IrcTestCase(unittest.TestCase):
|
||||
self.assertEqual(msg.prefix.split('!')[0], nick, msg, fail_msg)
|
||||
if subcommand is not None or subparams is not None:
|
||||
self.assertGreater(len(msg.params), 2, fail_msg)
|
||||
msg_target = msg.params[0]
|
||||
#msg_target = msg.params[0]
|
||||
msg_subcommand = msg.params[1]
|
||||
msg_subparams = msg.params[2:]
|
||||
if subcommand:
|
||||
|
Reference in New Issue
Block a user