Revision 9355a604 snf-tools/synnefo_tools/burnin/server_tests.py

b/snf-tools/synnefo_tools/burnin/server_tests.py
48 48
from synnefo_tools.burnin.cyclades_common import CycladesTests
49 49

  
50 50

  
51
# Too many public methods. pylint: disable-msg=R0904
52
# Too many instance attributes. pylint: disable-msg=R0902
51
# pylint: disable=too-many-public-methods,too-many-instance-attributes
53 52
# This class gets replicated into actual TestCases dynamically
54 53
class GeneratedServerTestSuite(CycladesTests):
55 54
    """Test Spawning Serverfunctionality"""
......
248 247
            socket.AF_INET, self.ipv4[0], 3389)
249 248
        # No actual RDP processing done. We assume the RDP server is there
250 249
        # if the connection to the RDP port is successful.
251
        # pylint: disable-msg=W0511
250
        # pylint: disable=fixme
252 251
        # FIXME: Use rdesktop, analyze exit code? see manpage
253 252
        sock.close()
254 253

  
......
261 260
            socket.AF_INET, self.ipv6[0], 3389)
262 261
        # No actual RDP processing done. We assume the RDP server is there
263 262
        # if the connection to the RDP port is successful.
264
        # pylint: disable-msg=W0511
263
        # pylint: disable=fixme
265 264
        # FIXME: Use rdesktop, analyze exit code? see manpage
266 265
        sock.close()
267 266

  

Also available in: Unified diff