Skip to content
Snippets Groups Projects
Forked from empyre / empyre
415 commits behind the upstream repository.
  • Jan Caron's avatar
    4b3922c3
    Implementation of numcore and small changes · 4b3922c3
    Jan Caron authored
    numcore: deleted c1, c2, c3, name changes in phase_mag_real
    analytic: name change beta to phi
    phasemapper: changes to include numcore
    test_compliance: also checkes .pyx files now
    setup: now works properly (hopefully on other systems, too)
    compare_discs: added script to compare discs
    4b3922c3
    History
    Implementation of numcore and small changes
    Jan Caron authored
    numcore: deleted c1, c2, c3, name changes in phase_mag_real
    analytic: name change beta to phi
    phasemapper: changes to include numcore
    test_compliance: also checkes .pyx files now
    setup: now works properly (hopefully on other systems, too)
    compare_discs: added script to compare discs
test_compliance.py 1.84 KiB
# -*- coding: utf-8 -*-
"""Testcase for the magcreator module."""


import datetime
import sys
import os
import unittest
import pep8


class TestCaseCompliance(unittest.TestCase):
    """
    Class for checking compliance of pyjurassic.
    """  # TODO: Docstring

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def get_files_to_check(self, rootdir):
        filepaths = []
        for root, dirs, files in os.walk(rootdir):
            for filename in files:
                if filename.endswith('.py') or filename.endswith('.pyx'):
                    filepaths.append(os.path.join(root, filename))
        return filepaths

    def test_pep8(self):
        # TODO: Docstring
        files = self.get_files_to_check('..')  # search in pyramid package
        ignores = ('E226', 'E128')
        pep8.MAX_LINE_LENGTH = 99
        pep8style = pep8.StyleGuide(quiet=False)
        pep8style.options.ignore = ignores

        stdout_buffer = sys.stdout
        with open(os.path.join('..', '..', 'output', 'pep8_log.txt'), 'w') as sys.stdout:
            print '<<< PEP8 LOGFILE >>>'
            print 'RUN:', datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
            print 'IGNORED RULES:', ', '.join(ignores)
            print 'MAX LINE LENGTH:', pep8.MAX_LINE_LENGTH
            print '\nERRORS AND WARNINGS:'
            result = pep8style.check_files(files)
            if result.total_errors == 0:
                print 'No Warnings or Errors detected!'
        sys.stdout = stdout_buffer

        error_message = 'Found %s Errors and Warnings!' % result.total_errors
        self.assertEqual(result.total_errors, 0, error_message)


if __name__ == '__main__':
    suite = unittest.TestLoader().loadTestsFromTestCase(TestCaseCompliance)
    unittest.TextTestRunner(verbosity=2).run(suite)