Spaces:
Build error
Build error
Update Space
Browse files- Dockerfile +1 -1
- pyproject.toml +2 -1
Dockerfile
CHANGED
@@ -13,4 +13,4 @@ RUN make .venv
|
|
13 |
COPY ./src /opt/src
|
14 |
|
15 |
# Runtime args
|
16 |
-
CMD .venv/bin/python /opt/create_app.py
|
|
|
13 |
COPY ./src /opt/src
|
14 |
|
15 |
# Runtime args
|
16 |
+
CMD .venv/bin/python /opt/src/create_app.py
|
pyproject.toml
CHANGED
@@ -27,7 +27,8 @@ dependencies = [
|
|
27 |
test = [
|
28 |
"pytest==7.4.4",
|
29 |
"mypy==1.8.0",
|
30 |
-
"httpx==0.26.0"
|
|
|
31 |
]
|
32 |
|
33 |
[tool.pytest.ini_options]
|
|
|
27 |
test = [
|
28 |
"pytest==7.4.4",
|
29 |
"mypy==1.8.0",
|
30 |
+
"httpx==0.26.0",
|
31 |
+
"types-PyYAML==6.0.12.12"
|
32 |
]
|
33 |
|
34 |
[tool.pytest.ini_options]
|