Skip to content

Commit d734624

Browse files
fix: ci
1 parent 8281d91 commit d734624

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run_mapdl_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ jobs:
3737
run: |
3838
python -m pip install --upgrade pip
3939
pip install uv
40-
uv venv
41-
source .venv/bin/activate
40+
uv venv .mapdl_venv
41+
source .mapdl_venv/bin/activate
4242
4343
- name: Install project dependencies
4444
run: |
45-
source .venv/bin/activate
45+
source .mapdl_venv/bin/activate
4646
uv pip install -e .[tests]
4747
uv pip install tests/launcher/pkg_with_entrypoint
4848
4949
- name: Unit testing
5050
run: |
51-
source .venv/bin/activate
51+
source .mapdl_venv/bin/activate
5252
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
5353
5454
- name: Upload coverage reports to Codecov

0 commit comments

Comments
 (0)