Skip to content

Commit 257c947

Browse files
committed
Updated CI pipeline
1 parent 0f73ddf commit 257c947

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/gh-tests-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python -m pip install -U -e .[dev]
2626
- name: Test with pytest
2727
run: |
28-
pytest --cache-clear --cov=./azure --cov-report=xml --cov-branch tests
28+
python -m pytest --cache-clear --cov=./azure --cov-report=xml --cov-branch tests
2929
- name: Codecov
3030
if: ${{ matrix.python-version }} == 3.9
3131
uses: codecov/codecov-action@v2

tests/test_kafka.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import azure.functions.kafka as azf_ka
1111
import azure.functions.meta as meta
1212

13-
from tests.utils.testutils import CollectionBytes, CollectionString, CollectionSint64
13+
from tests.utils.testutils import (CollectionBytes, CollectionString,
14+
CollectionSint64)
1415

1516

1617
class Kafka(unittest.TestCase):

tests/test_servicebus.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import azure.functions.servicebus as azf_sb
1111
from azure.functions import meta
1212

13-
from tests.utils.testutils import CollectionBytes, CollectionString, CollectionSint64
13+
from tests.utils.testutils import (CollectionBytes, CollectionString,
14+
CollectionSint64)
1415

1516

1617
class TestServiceBus(unittest.TestCase):

tests/utils/testutils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ def assert_json(self, func, expected_dict):
3939
cls=StringifyEnumJsonEncoder),
4040
json.dumps(expected_dict, sort_keys=True,
4141
cls=StringifyEnumJsonEncoder))
42-

0 commit comments

Comments
 (0)