Skip to content

Commit

Permalink
ci: remove coverage action and others
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandreteles committed Jul 12, 2023
1 parent 2ace786 commit 9d3c782
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,3 @@ jobs:
custom-arguments: "--cov --cov-report=xml"
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

- name: Get Coverage
uses: orgoro/coverage@v3
with:
coverageFile: ./coverage.xml
token: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /usr/src/app
COPY . .

RUN apt update && \
apt-get install build-essential libffi-dev -y \
apt-get install build-essential libffi-dev --no-install-recommends -y \
&& pip install --no-cache-dir -r requirements.txt

CMD [ "python3", "-m" , "sanic", "app:app", "--fast", "--access-logs", "--motd", "--noisy-exceptions", "-H", "0.0.0.0"]
2 changes: 1 addition & 1 deletion api/backends/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(
created_at: str,
published_at: str,
body: str,
repository: str = None,
repository: Optional[str] = None,
):
dict.__init__(
self,
Expand Down

0 comments on commit 9d3c782

Please sign in to comment.