Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSchipper committed Mar 30, 2024
1 parent d2c5c83 commit 6d920cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ jobs:
- name: Build
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements-dev.txt
pip install --no-cache-dir pip-tools==7.4.1
pip install --no-cache-dir -e .
pip install --no-cache-dir -r requirements-dev.txt
- name: Tests
run: |
pytest --cov=${PWD}/src/hcp_vault_secrets_client --cov-report xml:coverage.xml tests/unit
pytest --cov=${PWD}/src--cov-report xml:coverage.xml tests/unit
cat coverage.xml
- name: fix code coverage paths
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ RUN python -m pip install --no-cache-dir --upgrade pip==24.0
# Install pip-tools as the package manager and dev dependencies
RUN pip install --no-cache-dir pip-tools==7.4.1

RUN pip install --no-cache-dir -e .

RUN pip install --no-cache-dir -r requirements-dev.txt

ENTRYPOINT ["/bin/bash"]

0 comments on commit 6d920cc

Please sign in to comment.