Skip to content

Commit

Permalink
disable tests because of yt bans
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat committed Aug 19, 2024
1 parent d62f967 commit 8f1edcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Run tests
run: |
poetry run pytest -vvv --record-mode=none --disable-recording --ignore tests/providers/lyrics --ignore tests/utils/test_github.py --ignore tests/utils/test_ffmpeg.py --ignore tests/utils/test_metadata.py --ignore tests/test_matching.py
poetry run pytest -vvv --record-mode=none --disable-recording --ignore tests/providers/lyrics --ignore tests/utils/test_github.py --ignore tests/utils/test_ffmpeg.py --ignore tests/utils/test_metadata.py --ignore tests/test_matching.py --ignore tests/providers/audio/test_youtube.py --ignore tests/console/test_entry_point.py --ignore tests/test_init.py
env:
PLATFORM: ${{ matrix.platform }}

Expand Down
6 changes: 3 additions & 3 deletions spotdl/types/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ class WebOptionalOptions(TypedDict, total=False):
host: str
keep_alive: bool
enable_tls: bool
key_file: str | None
cert_file: str | None
ca_file: str | None
key_file: Optional[str]
cert_file: Optional[str]
ca_file: Optional[str]
allowed_origins: Optional[str]
keep_sessions: bool
force_update_gui: bool
Expand Down

0 comments on commit 8f1edcc

Please sign in to comment.