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 d734624 commit 0135b40Copy full SHA for 0135b40
.github/workflows/run_mapdl_tests.yml
@@ -34,19 +34,22 @@ jobs:
34
with:
35
python-version: ${{ env.MAIN_PYTHON_VERSION }}
36
- name: Install uv and create venv
37
+ shell: bash
38
run: |
39
python -m pip install --upgrade pip
40
pip install uv
41
uv venv .mapdl_venv
42
source .mapdl_venv/bin/activate
43
44
- name: Install project dependencies
45
46
47
48
uv pip install -e .[tests]
49
uv pip install tests/launcher/pkg_with_entrypoint
50
51
- name: Unit testing
52
53
54
55
uv run python -m uv pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
0 commit comments