Skip to content

Commit

Permalink
missing required package
Browse files Browse the repository at this point in the history
  • Loading branch information
seba-aln committed Jan 7, 2025
1 parent d853b9e commit 3b62802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ flake8
pytest
pytest-asyncio
httpx
h2
requests
aiohttp
cbor2
Expand Down
2 changes: 2 additions & 0 deletions tests/acceptance/subscribe/steps/then_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ async def step_impl(ctx: PNContext, wait_time: str):
@then(u'I observe the following Events and Invocations of the Presence EE')
@async_run_until_complete
async def step_impl(ctx):
await asyncio.sleep(2)

def parse_log_line(line: str):
line_type = 'event' if line.startswith('Triggered event') else 'invocation'
m = re.search('([A-Za-z])+(Event|Invocation)', line)
Expand Down

0 comments on commit 3b62802

Please sign in to comment.