diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index ae17258..3ea5d83 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -32,5 +32,5 @@ jobs: pip install pytest pip install coverage coverage run --omit */dist-packages/* --branch -m pytest - coverage xml + coverage report diff --git a/README.md b/README.md index 84a1d26..29a7c91 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# test-rep \ No newline at end of file +# test-rep +![Python application](https://github.com/vprokopets/test-rep/workflows/Python%20application/badge.svg) \ No newline at end of file diff --git a/time_based.py b/time_based.py index 57996fc..1c00937 100644 --- a/time_based.py +++ b/time_based.py @@ -7,7 +7,7 @@ class TimeBased(): def __init__(self): - self.interval = 3 + self.interval = 1 self.decision = False self.logger = logging.getLogger(__name__) self.thread = threading.Thread(target=self.self_evaluation, args=())