Skip to content

Commit c72e03a

Browse files
committed
Add tests
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent b52ff87 commit c72e03a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/test_codestyle.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ def test_codestyle(self):
2727
try:
2828
subprocess.check_output(args.split())
2929
except Exception as e:
30+
print("===========================================================")
31+
print(e.output)
32+
print("===========================================================")
3033
raise Exception(
3134
"Unsorted imports, please sort your imports using isort. "
32-
"Alternatively, run ``make valid``"
35+
"Alternatively, run ``isort .``",
36+
e.output,
3337
) from e

0 commit comments

Comments
 (0)