Skip to content

Commit

Permalink
Make packagable for client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Jan 26, 2025
1 parent 5c39ba6 commit fc89909
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ WORKDIR $PYSETUP_PATH
COPY poetry.lock pyproject.toml ./

# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
RUN poetry install --without dev
RUN poetry install --without dev --no-root


# `development` image is used during development / testing
@@ -75,7 +75,7 @@ COPY --from=builder-base $POETRY_HOME $POETRY_HOME
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH

# quicker install as runtime deps are already installed
RUN poetry install
RUN poetry install --no-root

# Install requirements for end-to-end testing
RUN playwright install --with-deps chromium
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@ dynamic = ["dependencies", "version"]

[tool.poetry]
version = "0.0.0"
package-mode = false

[tool.poetry.dependencies]
adit-radis-shared = { git = "https://github.com/openradx/adit-radis-shared.git", tag = "0.13.1" }

0 comments on commit fc89909

Please # to comment.