Skip to content

Commit

Permalink
ignored validationerror lines in mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
yfukai committed Sep 25, 2023
1 parent cdc55f4 commit 693b8ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,14 @@ def test_gap_closing(shared_datadir: str) -> None:

def test_no_accepting_wrong_argments() -> None:
with pytest.raises(ValidationError):
lt = LapTrack(hogehoge=True)
lt = LapTrack(hogehoge=True) # type: ignore
with pytest.raises(ValidationError):
lt = LapTrack(fugafuga=True)
lt = LapTrack(fugafuga=True) # type: ignore


def test_no_accepting_wrong_backend() -> None:
with pytest.raises(ValidationError):
lt = LapTrack(parallel_backend="hogehoge")
lt = LapTrack(parallel_backend="hogehoge") # type: ignore


def df_to_tuples(df):
Expand Down

0 comments on commit 693b8ba

Please sign in to comment.