Skip to content

Commit

Permalink
Save
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Dec 28, 2024
1 parent 94533ce commit 9ba1b08
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/test_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ def test_link_canonicalization(home: str, dotfiles: Dotfiles, run_dotbot: Callab
@pytest.mark.parametrize("dst", ["~/.f", "~/f"])
@pytest.mark.parametrize("include_force", [True, False])
def test_link_default_source(
dst: str, include_force: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None] # noqa: FBT001
dst: str,
include_force: bool, # noqa: FBT001
home: str,
dotfiles: Dotfiles,
run_dotbot: Callable[..., None],
) -> None:
"""Verify that default sources are calculated correctly.
Expand Down Expand Up @@ -752,7 +756,10 @@ def test_link_if_defaults_windows(home: str, dotfiles: Dotfiles, run_dotbot: Cal

@pytest.mark.parametrize("ignore_missing", [True, False])
def test_link_ignore_missing(
ignore_missing: bool, home: str, dotfiles: Dotfiles, run_dotbot: Callable[..., None] # noqa: FBT001
ignore_missing: bool, # noqa: FBT001
home: str,
dotfiles: Dotfiles,
run_dotbot: Callable[..., None],
) -> None:
"""Verify link 'ignore_missing' is respected when the target is missing."""

Expand Down

0 comments on commit 9ba1b08

Please sign in to comment.