Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jobs:
pip install pytest
pip install coverage
coverage run --omit */dist-packages/* --branch -m pytest
coverage xml
coverage report

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# test-rep
# test-rep
![Python application](https://github.com/vprokopets/test-rep/workflows/Python%20application/badge.svg)
2 changes: 1 addition & 1 deletion time_based.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=())
Expand Down