Skip to content

Commit 0ff8c46

Browse files
authored
[Python] Fix mustache tag syntax in github worklow (#20701)
1 parent 1311107 commit 0ff8c46

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/openapi-generator/src/main/resources/python/github-workflow.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
pip install -r test-requirements.txt
3030
- name: Test with pytest
3131
run: |
32-
pytest --cov={{packageName}}
32+
pytest --cov=<%packageName%>

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
pip install -r test-requirements.txt
2929
- name: Test with pytest
3030
run: |
31-
pytest --cov={{packageName}}
31+
pytest --cov=openapi_client

samples/client/echo_api/python/.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
pip install -r test-requirements.txt
2929
- name: Test with pytest
3030
run: |
31-
pytest --cov={{packageName}}
31+
pytest --cov=openapi_client

samples/openapi3/client/petstore/python-aiohttp/.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
pip install -r test-requirements.txt
2929
- name: Test with pytest
3030
run: |
31-
pytest --cov={{packageName}}
31+
pytest --cov=petstore_api

samples/openapi3/client/petstore/python/.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
pip install -r test-requirements.txt
2929
- name: Test with pytest
3030
run: |
31-
pytest --cov={{packageName}}
31+
pytest --cov=petstore_api

0 commit comments

Comments
 (0)