Skip to content

Commit

Permalink
Update pip install for unit tests to use pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rlskoeser committed Aug 13, 2024
1 parent ba50c3c commit e5c408d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,16 +115,14 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ matrix.python }}-${{ hashFiles('requirements.txt') }}
key: pip-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
pip-${{ matrix.python }}-${{ hashFiles('requirements.txt') }}
pip-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
pip-${{ matrix.python }}
pip-
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r dev-requirements.txt
- name: Install python dependencies
run: pip install -e '.[dev]'

- name: Download webpack stats
uses: actions/download-artifact@v4
Expand Down

0 comments on commit e5c408d

Please sign in to comment.