Compare commits

...
2 Commits
Author SHA1 Message Date
brb 7a396a88fb updated workflow
pipeline / Test (push) Failing after 34s
2023-07-12 14:08:51 +02:00
brb 238188f4a5 introduced flake8 error 2023-07-12 14:08:37 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,6 +23,6 @@ jobs:
pip install flake8 mypy pytest pip install flake8 mypy pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: PEP8 check - name: PEP8 check
run: flake8 ./code --benchmark --exit-zero run: flake8 ./code --benchmark
- name: Type check - name: Type check
run: mypy ./code run: mypy ./code
+1 -1
View File
@@ -90,7 +90,7 @@ def event(
if __name__ == '__main__': if __name__ == '__main__':
# setup # setup
initialise_app() initialise_app()
user_id = int(os.getenv('USER_ID', default=0)) user_id = int(os.getenv('USER_ID', default=0))
replicates = int(os.getenv('REPLICATES', default=REPLICATES)) replicates = int(os.getenv('REPLICATES', default=REPLICATES))
trigger_interval = float( trigger_interval = float(