All auto tests work. Integration tests not yet run !

pull/14/head
Thorsten Sick 3 years ago
parent 32af5cf956
commit 724586c60c

@ -4,7 +4,7 @@
from pydantic.dataclasses import dataclass
from pydantic import conlist
from typing import Literal, Optional, TypedDict, Union
from typing import Optional
from enum import Enum

@ -44,7 +44,8 @@ commands =
# Ignoring:
# C901 complex code. Reduce complexitiy. But this thing is over-reacting
# E501: line too long. Please: Still keep it short. But 80 chars is just incredibly short nowadays
flake8 --ignore C901,E501
# W601: TODO: has_key in config_verifier.py should be replaced by an iterator
flake8 --ignore C901,E501,W601
# Check if dependencies are vulnerable
safety check -r requirements.txt
# Check for common vulnerabilities

Loading…
Cancel
Save