Best Python code snippet using lisa_python
test_logging.py
Source:test_logging.py  
...26    logger.set_ignore_filter(None)27    logger.set_verbose(False)28    assert not logger.warnings_are_errors()29    assert logger.get_warning_count() == 030    assert logger.get_error_count() == 031    logger._increment_warnings()32    assert logger.get_warning_count() == 133    assert logger.get_error_count() == 034    logger._increment_errors()35    assert logger.get_warning_count() == 136    assert logger.get_error_count() == 137    logger = Logger()38    logger.set_tab_size(4)39    logger.set_show_hash(False)40    logger.set_warnings_are_errors(True)41    logger.set_ignore_filter(None)42    logger.set_verbose(False)43    assert logger.warnings_are_errors()44    assert logger.get_warning_count() == 045    assert logger.get_error_count() == 046    logger._increment_warnings()47    assert logger.get_warning_count() == 048    assert logger.get_error_count() == 149    logger._increment_errors()50    assert logger.get_warning_count() == 051    assert logger.get_error_count() == 252    logger.set_warnings_are_errors(False)53    assert not logger.warnings_are_errors()54def test_show_hash_setting():55    logger = Logger()56    logger.set_tab_size(4)57    logger.set_show_hash(False)58    logger.set_warnings_are_errors(False)59    logger.set_ignore_filter(None)60    logger.set_verbose(False)61    assert not logger.show_hash()62    logger = Logger()63    logger.set_tab_size(4)64    logger.set_show_hash(True)65    logger.set_warnings_are_errors(False)...models.py
Source:models.py  
...20        21    @staticmethod22    def get_total_errors(text):23        n_errors = 024        a = LanguageCheck.get_error_count(text)25        b = ProseLint.get_error_count(text)26        c = PyEnchant.get_error_count(text)27        d = Pedant.get_error_count(text)28        n_errors = a+b+c+d29        return n_errors, a, b, c, d30    31# Checks grammar and spelling32class LanguageCheck():33    @staticmethod34    def get_error_count(text):35        tool = language_check.LanguageTool('en-AU')36        matches = tool.check(text)37        return len(matches)38    39    @staticmethod40    def fix(text):41        tool = language_check.LanguageTool('en-AU')42        matches = tool.check(text)43        return language_check.correct(text, matches)44    45# Checks grammar46class ProseLint():47    @staticmethod48    def get_suggestions(text):49        suggestions = proselint.tools.lint(text)50        return suggestions51    @staticmethod52    def get_error_count(text):53        suggestions = proselint.tools.lint(text)54        return(len(suggestions))55        56# Checks spelling57# You need to install some dependecies for PyEnchant to work58# https://stackoverflow.com/questions/21083059/enchant-c-library-not-found-while-installing-pyenchant-using-pip-on-osx59# Reference for PyEnchant: http://pythonhosted.org/pyenchant/tutorial.html60class PyEnchant():61    @staticmethod62    def get_errors(text):63        checker = SpellChecker("en_AU")64        checker.set_text(text)65        return checker66    @staticmethod67    def get_error_count(text):68        checker = SpellChecker("en_AU")69        checker.set_text(text)70        return len(list(checker))71        72# Checks punctuation73# https://github.com/Decagon/Pedant 74# You need to:75# make init-js76# Uses this as reference: https://www.codementor.io/jstacoder/integrating-nodejs-python-how-to-write-cross-language-modules-pyexecjs-du107xfep77class Pedant():78    @staticmethod79    def get_error_count(lines):80        runtime = execjs.get('Node')81        context = runtime.compile('''82            module.paths.push('%s');83            var pedant = require('pedantjs');84            function validate(lines) {85                return pedant.validate(lines);86            }87        ''' % os.path.join(os.path.dirname(__file__),'node_modules'))88        result = context.call("validate", lines)89        return result90class Project(object):91    def __init__(self, title, description, budget, jobs):92        self._title = title93        self._description = description...module1.py
Source:module1.py  
2    with open(file_name) as input_file:3        return [line for line in input_file.read().splitlines()]456def get_error_count(line):7    opened = []89    for c in line:10        if c in "{(<[":11            opened.append(c)12        else:13            last_opened = opened.pop()14            if c == ">" and last_opened != "<":15                return 2513716            if c == "}" and last_opened != "{":17                return 119718            if c == ")" and last_opened != "(":19                return 320            if c == "]" and last_opened != "[":21                return 5722    return 0232425def get_imcomplete_count(line):26    opened = []27    for c in line:28        if c in "{(<[":29            opened.append(c)30        else:31            last_opened = opened.pop()32    count = 033    opened.reverse()34    for c in opened:35        count = count * 536        if c == "(":37            count += 138        if c == "[":39            count += 240        if c == "{":41            count += 342        if c == "<":43            count += 444    return count454647if __name__ == '__main__':48    content = read_file("inputs/part1.example.txt")49    content = read_file("inputs/input1.txt")5051    # Part 152    # print(sum([get_error_count(line) for line in content]))5354    #  Part 255    valid_lines = [line for line in content if get_error_count(line) == 0]56    scores = [get_imcomplete_count(line) for line in valid_lines]57    list.sort(scores)
...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
