Skip to content

Commit

Permalink
chore: Update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Jan 7, 2025
1 parent 635b860 commit 5a380fa
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 42 deletions.
32 changes: 0 additions & 32 deletions internal/python/__snapshots__/plan_test.snap
Original file line number Diff line number Diff line change
@@ -1,204 +1,172 @@

[TestDetermineInstallCmd_Snapshot/pdm-none - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-fastapi - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm add uvicorn
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-static-django - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm add gunicorn
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-static-nginx - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm add gunicorn
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-static-nginx-django - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm add gunicorn
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-streamlit-entry - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-tornado - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pdm-with-wsgi - 1]
RUN pip install pdm
COPY pyproject.toml* pdm.lock* ./
RUN pdm add gunicorn
RUN pdm install
---

[TestDetermineInstallCmd_Snapshot/pip-none - 1]
COPY requirements.txt* ./
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-fastapi - 1]
COPY requirements.txt* ./
RUN pip install uvicorn
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-static-django - 1]
COPY requirements.txt* ./
RUN pip install gunicorn
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-static-nginx - 1]
COPY requirements.txt* ./
RUN pip install gunicorn
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-static-nginx-django - 1]
COPY requirements.txt* ./
RUN pip install gunicorn
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-streamlit-entry - 1]
COPY requirements.txt* ./
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-tornado - 1]
COPY requirements.txt* ./
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pip-with-wsgi - 1]
COPY requirements.txt* ./
RUN pip install gunicorn
RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin
---

[TestDetermineInstallCmd_Snapshot/pipenv-none - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-fastapi - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install uvicorn
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-static-django - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install gunicorn
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-static-nginx - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install gunicorn
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-static-nginx-django - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install gunicorn
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-streamlit-entry - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-tornado - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/pipenv-with-wsgi - 1]
RUN pip install pipenv
COPY Pipfile* Pipfile.lock* ./
RUN pipenv install gunicorn
RUN pipenv install
---

[TestDetermineInstallCmd_Snapshot/poetry-none - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-fastapi - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry add uvicorn
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-static-django - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry add gunicorn
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-static-nginx - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry add gunicorn
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-static-nginx-django - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry add gunicorn
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-streamlit-entry - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-tornado - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry install
---

[TestDetermineInstallCmd_Snapshot/poetry-with-wsgi - 1]
RUN pip install poetry
COPY pyproject.toml* poetry.lock* ./
RUN poetry add gunicorn
RUN poetry install
---
Expand Down
2 changes: 1 addition & 1 deletion tests/snapshots/python-django-static-whitenoise.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt\nRUN python manage.py collectstatic --noinput"
framework: "django"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { gunicorn --bind :8080 core.wsgi; }; _startup"
Expand Down
2 changes: 1 addition & 1 deletion tests/snapshots/python-django-static.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang nginx"
build: "RUN pip install -r requirements.txt\nRUN python manage.py collectstatic --noinput"
framework: "django"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { /usr/sbin/nginx && gunicorn --bind :8000 core.wsgi; }; _startup"
Expand Down
2 changes: 1 addition & 1 deletion tests/snapshots/python-django.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "django"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { gunicorn --bind :8080 mysite.wsgi; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-fastapi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "fastapi"
install: "COPY requirements.txt* ./\nRUN pip install uvicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install uvicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { uvicorn main:app --host 0.0.0.0 --port 8080; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-flask-mysql.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "flask"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { gunicorn --bind :8080 app:app; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-flask-static.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "flask"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { gunicorn --bind :8080 main:app; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-flask.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "flask"
install: "COPY requirements.txt* ./\nRUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN pip install gunicorn\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { gunicorn --bind :8080 app:app; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-hnswlib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PlanType: python
Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
install: "COPY requirements.txt* ./\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { python app.py; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-streamlit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
framework: "streamlit"
install: "COPY requirements.txt* ./\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { streamlit run streamlit_app.py --server.port=8080 --server.address=0.0.0.0; }; _startup"
2 changes: 1 addition & 1 deletion tests/snapshots/python-zba651.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PlanType: python
Meta:
apt-deps: "build-essential pkg-config clang"
build: "RUN pip install -r requirements.txt"
install: "COPY requirements.txt* ./\nRUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
install: "RUN sed '/-e/d' requirements.txt | pip install -r /dev/stdin"
packageManager: "pip"
pythonVersion: "3.10"
start: "_startup() { python main.py; }; _startup"

0 comments on commit 5a380fa

Please sign in to comment.