Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: run tests script copying local env #2495

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ test-reports
.python-version
docker
env
.venv
3 changes: 2 additions & 1 deletion docker/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ WORKDIR /usr/src/app
RUN pip install --no-cache-dir poetry

ADD ./README.md pyproject.toml ./poetry.lock ./
RUN mkdir aries_cloudagent && touch aries_cloudagent/__init__.py

RUN poetry install --no-root --no-directory -E "askar bbs"
RUN poetry install --no-directory -E "askar bbs" --with=dev

ADD . .

Expand Down