Skip to content

Commit

Permalink
feat($pipenv): mute noisy logs when installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Sep 23, 2022
1 parent f93edc9 commit 1a0201c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Dependencies with pipenv
run: |
pip install pipenv
pipenv install --deploy --dev
pipenv install --quiet --deploy --dev
- run: pipenv run isort --recursive --diff .
- run: pipenv run black --check .
- run: pipenv run flake8
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends gcc
# Install python dependencies in /.venv
COPY Pipfile .
COPY Pipfile.lock .
RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy
RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --quiet --deploy


FROM base AS runtime
Expand Down

0 comments on commit 1a0201c

Please sign in to comment.