Skip to content

Commit b4e471d

Browse files
ci: Remove template expansion from inside job run command
1 parent 911f1ca commit b4e471d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run_mapdl_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ jobs:
4343
run: |
4444
uv sync --extra tests
4545
- name: Run tests
46+
env:
47+
PACKAGE_NAMESPACE: ${{ env.PACKAGE_NAMESPACE }}
4648
run: |
4749
uv sync --extra tests --no-dev
4850
uv pip install tests/launcher/pkg_with_entrypoint
49-
uv run pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
51+
uv run pytest -vx --cov=${PACKAGE_NAMESPACE} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
5052
5153
# - uses: codecov/codecov-action@v5
5254
# name: 'Upload coverage to CodeCov'

0 commit comments

Comments
 (0)