Skip to content

Commit

Permalink
Extend os
Browse files Browse the repository at this point in the history
  • Loading branch information
kinuax committed May 7, 2024
1 parent 0fa31cd commit 4187dcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion rolabesti/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ def create_directories(directories: list[Path]) -> None:
path.mkdir(parents=True)


max_overlap_length = 30
copy_path = user_documents_path()
music_path = user_music_path()
tinydb_path = user_data_path(__app_name__)
toml_path = user_config_path(__app_name__)
create_directories([copy_path, music_path, tinydb_path, toml_path])
tinydb_file = tinydb_path / "tracks.json"
toml_file = toml_path / "config.toml"
max_overlap_length = 30


class Databases(str, Enum):
Expand Down

0 comments on commit 4187dcb

Please sign in to comment.