fga-eps-mds/2022-2-Certifik8

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
default: black test lint

test:
    @pytest .

black:
    @black .

lint:
    @find . -type f -name "*.py" -exec pylint --disable=C0103,C0114,C0301,E0402,W0703,R0903 -j 0 --exit-zero {} \;