Compare commits
No commits in common. "274a870a6abf1c03bab5ca6f289b5ea1ad68fd2e" and "ea8721659ccfc6f1376c418c4f19c17664c82360" have entirely different histories.
274a870a6a
...
ea8721659c
|
|
@ -2,7 +2,7 @@ pipeline:
|
|||
# =====TESTING=====
|
||||
test-backend:
|
||||
# Alpine version doesn't have make
|
||||
image: python:3.9
|
||||
image: python:3.8
|
||||
pull: true
|
||||
group: test
|
||||
commands:
|
||||
|
|
@ -23,7 +23,7 @@ pipeline:
|
|||
|
||||
# =====LINTING=====
|
||||
lint-backend:
|
||||
image: python:3.9
|
||||
image: python:3.8
|
||||
group: lint
|
||||
commands:
|
||||
- make lint
|
||||
|
|
|
|||
|
|
@ -14,4 +14,5 @@ async def frontend(path):
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
print(app.url_map)
|
||||
app.run(host="0.0.0.0")
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
[tool.black]
|
||||
line-length = 79
|
||||
Reference in New Issue