Skip to content

Commit

Permalink
Add --diff flag to Black for easier debugging (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
euri10 authored and sethmlarson committed Aug 16, 2019
1 parent cad9c03 commit e64fcad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -21,7 +21,7 @@ def check(session):
"black", "flake8", "flake8-bugbear", "flake8-comprehensions", "mypy"
)

session.run("black", "--check", "--target-version=py36", *source_files)
session.run("black", "--check", "--diff", "--target-version=py36", *source_files)
session.run("flake8", *source_files)
session.run("mypy", "httpx")

Expand Down

0 comments on commit e64fcad

Please sign in to comment.