79
79
AzureWebJobsEventGridTopicUri : ${{ secrets.LinuxEventGridTopicUriString36 }}
80
80
AzureWebJobsEventGridConnectionKey : ${{ secrets.LinuxEventGridConnectionKeyString36 }}
81
81
run : |
82
- pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
82
+ python -m pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
83
83
- name : Running 3.7 Tests
84
84
if : matrix.python-version == 3.7
85
85
env :
90
90
AzureWebJobsEventGridTopicUri : ${{ secrets.LinuxEventGridTopicUriString37 }}
91
91
AzureWebJobsEventGridConnectionKey : ${{ secrets.LinuxEventGridConnectionKeyString37 }}
92
92
run : |
93
- pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
93
+ python -m pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
94
94
- name : Running 3.8 Tests
95
95
if : matrix.python-version == 3.8
96
96
env :
@@ -101,7 +101,7 @@ jobs:
101
101
AzureWebJobsEventGridTopicUri : ${{ secrets.LinuxEventGridTopicUriString38 }}
102
102
AzureWebJobsEventGridConnectionKey : ${{ secrets.LinuxEventGridConnectionKeyString38 }}
103
103
run : |
104
- pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
104
+ python -m pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
105
105
- name : Running 3.9 Tests
106
106
if : matrix.python-version == 3.9
107
107
env :
@@ -112,7 +112,7 @@ jobs:
112
112
AzureWebJobsEventGridTopicUri : ${{ secrets.LinuxEventGridTopicUriString39 }}
113
113
AzureWebJobsEventGridConnectionKey : ${{ secrets.LinuxEventGridConnectionKeyString39 }}
114
114
run : |
115
- pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
115
+ python -m pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
116
116
- name : Running 3.10 Tests
117
117
if : matrix.python-version == 3.10
118
118
env :
@@ -123,7 +123,7 @@ jobs:
123
123
AzureWebJobsEventGridTopicUri : ${{ secrets.LinuxEventGridTopicUriString310 }}
124
124
AzureWebJobsEventGridConnectionKey : ${{ secrets.LinuxEventGridConnectionKeyString310 }}
125
125
run : |
126
- pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
126
+ python -m pytest --instafail --cov=./azure_functions_worker --cov-report xml --cov-branch --cov-append tests/endtoend
127
127
- name : Codecov
128
128
129
129
with :
0 commit comments