Skip to content

Commit

Permalink
Run black against everything, not just tests and datasette dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Feb 13, 2020
1 parent b38a792 commit cf5f438
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_black.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@

def test_black():
runner = CliRunner()
result = runner.invoke(
black.main, [str(code_root / "tests"), str(code_root / "datasette"), "--check"]
)
result = runner.invoke(black.main, [str(code_root), "--check"])
assert result.exit_code == 0, result.output

0 comments on commit cf5f438

Please sign in to comment.