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