We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05974c0 commit dc10ae2Copy full SHA for dc10ae2
.github/workflows/run_mapdl_tests.yml
@@ -34,14 +34,12 @@ jobs:
34
python-version: ${{ env.MAIN_PYTHON_VERSION }}
35
- name: Install uv and create venv
36
run: |
37
- pip install --upgrade pip
+ python -m pip install --upgrade pip
38
pip install uv
39
-
40
- name: Install project dependencies
41
42
- uv run pip install .[tests]
43
- uv run pip install tests/launcher/pkg_with_entrypoint
44
+ uv pip install --system .[tests]
+ uv pip install --system tests/launcher/pkg_with_entrypoint
45
- name: Run tests
46
47
uv run pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
0 commit comments