diff --git a/test/src/test_pylint.py b/test/src/test_pylint.py index 103224c0..2c8f7d26 100644 --- a/test/src/test_pylint.py +++ b/test/src/test_pylint.py @@ -76,7 +76,7 @@ def test_isort(source_files): # modules we have. # - r = subprocess.run(["isort", "-c"] + source_files, check=False) + r = subprocess.run(["isort", "--check", "--diff"] + source_files, check=False) if r.returncode != 0: pytest.fail("isort issues detected")