Compare commits

...

2 Commits

Author SHA1 Message Date
Jef Roosens 274a870a6a
Switched to pure default Black config
continuous-integration/drone the build failed Details
2021-05-18 23:48:44 +02:00
Jef Roosens 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