Skip to content

Commit 40579b8

Browse files
authored
ci: test script updated in order to use latest ruff (#410)
1 parent fd1a0ca commit 40579b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Setup python

scripts/test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export SCHEMA_REGISTRY_SERVER_PORT=8081
1111
./scripts/wait_for_services
1212

1313
poetry run pytest --cov=schema_registry ${1} --cov-fail-under=87
14-
poetry run ruff schema_registry/ tests/
15-
poetry run ruff format --check --diff schema_registry tests
14+
poetry run ruff check schema_registry tests
15+
poetry run ruff format --check schema_registry tests
1616
poetry run mypy schema_registry
1717
poetry run codecov --token=$CODECOV_TOKEN

0 commit comments

Comments
 (0)