@ -22,6 +22,6 @@ jobs:
- name: Install the project dependencies
run: poetry install
- name: Enter the virtual environment
run: source .venv/bin/activate
run: source $VENV
- name: Run the tests
run: poetry run pytest
@ -63,15 +63,14 @@ types-chardet = "^5.0.4.6"
mypy-protobuf = "^3.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
[tool.ruff]
line-length = 70
line-length = 127
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
select = ["E4", "E7", "E9", "F", "W"]
ignore = []
fixable = ["ALL"]
unfixable = []