Compare commits

..

2 commits

Author SHA1 Message Date
274a870a6a
Switched to pure default Black config
Some checks failed
continuous-integration/drone the build failed
2021-05-18 23:48:44 +02:00
bf3a8340da
Updated ci python version to 3.9 2021-05-18 23:46:46 +02:00
3 changed files with 2 additions and 5 deletions

View file

@ -2,7 +2,7 @@ pipeline:
# =====TESTING=====
test-backend:
# Alpine version doesn't have make
image: python:3.8
image: python:3.9
pull: true
group: test
commands:
@ -23,7 +23,7 @@ pipeline:
# =====LINTING=====
lint-backend:
image: python:3.8
image: python:3.9
group: lint
commands:
- make lint

View file

@ -14,5 +14,4 @@ async def frontend(path):
if __name__ == "__main__":
print(app.url_map)
app.run(host="0.0.0.0")

View file

@ -1,2 +0,0 @@
[tool.black]
line-length = 79