Ejemplo n.º 1
0
 def test_pep8(self):
     '''Ensure qtcommon conforms to pep8'''
     pep8_options['exclude'] = ['freeseer/frontend/qtcommon/resource_rc.py']  # Exclude auto-generated files
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(['freeseer/tests/frontend/qtcommon',
                                   'freeseer/frontend/qtcommon'])
     pep8_report(self, report)
Ejemplo n.º 2
0
 def test_pep8(self):
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files([
         'freeseer/tests/frontend/talkeditor',
         'freeseer/frontend/talkeditor'
     ])
     pep8_report(self, report)
Ejemplo n.º 3
0
 def test_pep8(self):
     '''Ensure framework conforms to pep8'''
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(['freeseer/tests/framework',
                                   'freeseer/framework',
                                   'freeseer/tests/__init__.py'])  # Need to ensure __init__.py is also checked
     pep8_report(self, report)
Ejemplo n.º 4
0
 def test_pep8(self):
     '''Ensure qtcommon conforms to pep8'''
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files([
         'freeseer/tests/frontend/controller',
         'freeseer/frontend/controller'
     ])
     pep8_report(self, report)
Ejemplo n.º 5
0
 def test_pep8(self):
     '''Ensure framework conforms to pep8'''
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files([
         'freeseer/tests/framework', 'freeseer/framework',
         'freeseer/tests/__init__.py'
     ])  # Need to ensure __init__.py is also checked
     pep8_report(self, report)
Ejemplo n.º 6
0
 def test_pep8(self):
     '''Ensure qtcommon conforms to pep8'''
     pep8_options['exclude'] = [
         'freeseer/frontend/qtcommon/resource_rc.py'
     ]  # Exclude auto-generated files
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(
         ['freeseer/tests/frontend/qtcommon', 'freeseer/frontend/qtcommon'])
     pep8_report(self, report)
Ejemplo n.º 7
0
 def test_pep8(self):
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(['freeseer/tests/frontend/record',
                                   'freeseer/frontend/record'])
     pep8_report(self, report)
Ejemplo n.º 8
0
 def test_pep8(self):
     '''Ensure freeseer plugins conform to pep8'''
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(['freeseer/tests/plugins',
                                   'freeseer/plugins'])
     pep8_report(self, report)
Ejemplo n.º 9
0
 def test_pep8(self):
     '''Ensure qtcommon conforms to pep8'''
     checker = pep8.StyleGuide(**pep8_options)
     report = checker.check_files(['freeseer/tests/frontend/controller',
                                   'freeseer/frontend/controller'])
     pep8_report(self, report)