Skip to content

Commit 4947ea0

Browse files
fix: CI
1 parent 5b4c271 commit 4947ea0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/run_mapdl_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ jobs:
3434
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3535
- name: Install uv and create venv
3636
run: |
37-
python -m pip install --upgrade pip
38-
python -m pip install uv
37+
pip install --upgrade pip
38+
pip install uv
3939
4040
- name: Install project dependencies
4141
run: |
42-
uv run python -m pip install --system .[tests]
43-
uv run python -m pip install --system tests/launcher/pkg_with_entrypoint
42+
uv run pip install --system .[tests]
43+
uv run pip install --system tests/launcher/pkg_with_entrypoint
4444
4545
- name: Run tests
4646
run: |
47-
uv run python -m pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
47+
uv run pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
4848
4949
# - uses: codecov/codecov-action@v5
5050
# name: 'Upload coverage to CodeCov'

0 commit comments

Comments
 (0)