File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1212 $NIX develop .#ci -c black --diff --check qbpm tests
1313 - ruff : |
1414 cd qbpm
15- $NIX develop .#ci -c ruff qbpm
15+ $NIX develop .#ci -c ruff qbpm tests
1616 - mypy : |
1717 cd qbpm
1818 $NIX develop .#ci -c mypy qbpm tests
Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ ignore = [
66 " ANN102" , # annotate cls
77 " ANN401" , # ban Any
88]
9+
10+ [per-file-ignores ]
11+ "tests/test_main.py" = [ " S101" , " ANN201" ]
12+ "tests/test_profiles.py" = [ " S101" , " ANN201" ]
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def test_overwrite_config(tmp_path: Path):
7171 for line in conf :
7272 if url in line :
7373 return
74- assert False
74+ raise AssertionError ()
7575
7676
7777def test_ensure_profile_exists_exists (tmp_path : Path ):
You can’t perform that action at this time.
0 commit comments