Skip to content

Commit 53d432b

Browse files
committed
Merge branch 'release/0.0.77'
2 parents c9f497b + 9980a1e commit 53d432b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ jobs:
374374
run: |
375375
. venv/bin/activate
376376
coverage combine coverage*/.coverage*
377-
coverage report --fail-under=79
377+
coverage report --fail-under=72
378378
coverage xml
379379
- name: Upload coverage to Codecov
380380
uses: codecov/codecov-action@v1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from setuptools import find_packages, setup
66

7-
VERSION = "0.0.76"
7+
VERSION = "0.0.77"
88

99

1010
setup(

tests/conftest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ async def start_network(self, *args, **kwargs):
7070
async def write_network_info(self, *args, **kwargs):
7171
"""Mock write_network_info."""
7272

73+
async def add_endpoint(self, descriptor):
74+
"""Mock add_endpoint."""
75+
7376
mrequest = CoroutineMock()
7477
request = CoroutineMock(return_value=(foundation.Status.SUCCESS, None))
7578

0 commit comments

Comments
 (0)