Skip to content

Commit

Permalink
add back pip list
Browse files Browse the repository at this point in the history
  • Loading branch information
jthurner committed Dec 11, 2024
1 parent b2f8f6a commit 255612e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/relying_test_on_dev_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@ jobs:
run: |
uv sync --extra test
uv pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
run: uv run pytest -n auto
9 changes: 9 additions & 0 deletions .github/workflows/run_tests_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra test
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
if: ${{ matrix.python-version != '3.11' }}
run: |
Expand Down Expand Up @@ -64,6 +67,9 @@ jobs:
run: |
uv sync
uv pip install flake8
- name: List all installed packages
run: |
uv pip list
- name: Lint with flake8 (syntax errors and undefinded names)
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -89,6 +95,9 @@ jobs:
- name: Install dependencies
run: |
uv sync --extra test --extra plotting
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
run: |
uv sync --extra test --extra plotting
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/run_tests_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra test
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
if: ${{ matrix.python-version != '3.11' }}
run: |
Expand Down Expand Up @@ -74,6 +77,9 @@ jobs:
run: |
uv sync --extra test
uv pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
if: ${{ matrix.python-version != '3.11' }}
run: |
Expand All @@ -95,6 +101,9 @@ jobs:
- name: Install dependencies
run: |
uv sync --extra test --extra plotting
- name: List all installed packages
run: |
uv pip list
- name: Test with pytest
run: |
uv run pytest --nbmake -n auto "./tutorials"
Expand Down

0 comments on commit 255612e

Please sign in to comment.