Skip to content

Commit

Permalink
chore: run pre-commit on sourcery pr
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee committed Jun 26, 2023
1 parent 9efc674 commit 7444678
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
coverage: ${{ matrix.python-version == '3.11' }}
integration: ${{ matrix.python-version == '3.11' }}

upload-coverage:
needs: test
name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

test-platform-compat:
if: github.event_name == 'push'
strategy:
Expand Down
2 changes: 1 addition & 1 deletion niapi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run_all_app(


def _convert_uvicorn_args(args: dict[str, Any]) -> list[str]:
process_args = []
process_args: list[str] = []
for arg, value in args.items():
if isinstance(value, list):
process_args.extend(f"--{arg}={val}" for val in value)
Expand Down

0 comments on commit 7444678

Please sign in to comment.