Skip to content

Commit

Permalink
upgrade dependencies when installing during GA
Browse files Browse the repository at this point in the history
  • Loading branch information
rocco8773 committed Jun 25, 2024
1 parent d019b29 commit 86f9cd5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Install 'bapsflib' dependencies
run: python -m pip install -r requirements/tests.txt
run: |
python -m pip install --upgrade
python -m pip install -r requirements/tests.txt --upgrade
- name: Run tests ${{ matrix.name-modifier }}
run: |
if ${{ matrix.do-coverage }}; then
Expand Down Expand Up @@ -91,7 +93,9 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Install 'bapsflib' dependencies
run: python -m pip install -r requirements/tests.txt
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements/tests.txt --upgrade
- name: Run tests
run: |
python -m unittest discover
Expand Down Expand Up @@ -126,6 +130,7 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install 'bapsflib' dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements/tests.txt ${{ matrix.min-install }}
- name: Run tests
run: python -m unittest discover
Expand All @@ -147,6 +152,7 @@ jobs:
python-version: 3.8
- name: Install 'bapsflib' dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements/install.txt
- name: Import 'bapsflib'
run: |
Expand Down

0 comments on commit 86f9cd5

Please sign in to comment.