There was an error while loading. Please reload this page.
shell
1 parent fe35a34 commit c8fcb97Copy full SHA for c8fcb97
1 file changed
tests/test_codestyle.py
@@ -12,7 +12,7 @@ class BaseTests(unittest.TestCase):
12
def test_codestyle(self):
13
args = "black --check -l 100 setup.py src tests"
14
try:
15
- subprocess.check_output(args.split())
+ subprocess.check_output(args.split(), shell=False)
16
except subprocess.CalledProcessError as e:
17
print("===========================================================")
18
print(e.output)
@@ -25,7 +25,7 @@ def test_codestyle(self):
25
26
args = "isort --check-only src tests setup.py"
27
28
29
except Exception as e:
30
31
0 commit comments