Fix style
Work on branch develop
Remember that this is python3.6 so some of new features do not work (like f"STH {value}")
-
Add more docs in sphinx format to worker module
-
Look at this module and fix things like:
- default collection name as variable
- function name as variable
- remove this
- and so on
-
Add new lines between stage in gitlab-ci
-
Use template for before script, example:
.check_style_template:
before_script:
- pip install tox==3.18.1
pep8:
extends: .check_style_template
stage: check_style
script:
- tox -v -e pep8
- new main standard: https://gitlab.clarin-pl.eu/nlpworkers/archive_extractor/-/blob/master/main.py
- change run:
run(["python3.6", "main.py", "service"])intorun(["python3.6", "main.py"])
Edited by Bartosz Walkowiak