There was an error while loading. Please reload this page.
1 parent a0fafed commit dd44bc2Copy full SHA for dd44bc2
1 file changed
tests/test_codestyle.py
@@ -10,7 +10,7 @@
10
11
class BaseTests(unittest.TestCase):
12
def test_codestyle(self):
13
- args = "venv/bin/black --check -l 100 setup.py etc src tests docs"
+ args = "venv/bin/black --check -l 100 setup.py src tests"
14
try:
15
subprocess.check_output(args.split())
16
except subprocess.CalledProcessError as e:
@@ -19,6 +19,6 @@ def test_codestyle(self):
19
print("===========================================================")
20
raise Exception(
21
"Black style check failed; please format the code using:\n"
22
- " python -m black -l 100 setup.py etc src tests docs",
+ " python -m black -l 100 setup.py src tests",
23
e.output,
24
) from e
0 commit comments