Skip to content

Commit

Permalink
Merge branch 'main' into fern-bot/09-16-2024-0711PM
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorybchris authored Sep 16, 2024
2 parents 12de836 + f34fc94 commit c4fd288
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/legacy_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Check Coverage
shell: bash
run: |
poetry run covcheck coverage.xml --config pyproject.toml --group unit
poetry run covcheck coverage.xml --group unit --line 62 --branch 26
build-service:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Check Coverage
shell: bash
run: |
poetry run covcheck coverage.xml --config pyproject.toml --group service
poetry run covcheck coverage.xml --group service --line 67 --branch 30
build-microphone:
runs-on: ubuntu-latest
Expand Down
21 changes: 10 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,15 @@ ruff = "^0.5.6"
semver = "^2.13.0"
testbook = "^0.4.2"
types-aiofiles = "^24.1.0.20240626"
types-python-dateutil = "^2.9.0.20240316"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.extras]
microphone = ["pydub", "simpleaudio", "sounddevice"]
legacy = ["pydub"]

[tool.pytest.ini_options]
testpaths = [ "tests" ]
Expand All @@ -92,14 +101,4 @@ asyncio_mode = "auto"
plugins = ["pydantic.mypy"]

[tool.ruff]
line-length = 120


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.extras]
examples=["jupyter"]
microphone=["pydub", "simpleaudio", "sounddevice"]
legacy=["pydub"]
line-length = 120

0 comments on commit c4fd288

Please sign in to comment.