-
-
Notifications
You must be signed in to change notification settings - Fork 127
Added GitHub action ci #11
Conversation
3bb07f3 to
2091825
Compare
|
Could you please implement Tom's feedback to your PR so it follows conventions from other encode projects and also implements code coverage? Thanks! |
|
Sure! I will do them and will let you know. |
2091825 to
7c8617f
Compare
|
@rafalp I made it like other encode project(httpx) as Tom mentioned. Please take a look and let me if there is anything else to do. |
7c8617f to
78c82b8
Compare
scripts/docs
Outdated
| @@ -0,0 +1,10 @@ | |||
| #!/bin/sh -e | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file seems useless considered we don't have any docs for the lib.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've removed this script
broadcaster/_backends/base.py
Outdated
| import typing | ||
| from typing import Any | ||
|
|
||
| from broadcaster._base import Event |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import should be relative.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
broadcaster/_backends/memory.py
Outdated
| from .base import BroadcastBackend | ||
| from .._base import Event | ||
|
|
||
| from broadcaster._backends.base import BroadcastBackend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those imports should be relative.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
broadcaster/_backends/postgres.py
Outdated
| from .base import BroadcastBackend | ||
| from .._base import Event | ||
|
|
||
| from broadcaster._backends.base import BroadcastBackend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those imports should be relative.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
broadcaster/_backends/redis.py
Outdated
|
|
||
| import asyncio_redis | ||
|
|
||
| from broadcaster._backends.base import BroadcastBackend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those imports should be relative,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
78c82b8 to
4ce6c41
Compare
|
@rafalp I addressed your comments. |
|
Nice work, thank you! |
Fixes #6.
I used GitHub action services instead of
docker-compose.