Skip to content

Commit dd44bc2

Browse files
committed
remove etc and docs from black check
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent a0fafed commit dd44bc2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_codestyle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class BaseTests(unittest.TestCase):
1212
def test_codestyle(self):
13-
args = "venv/bin/black --check -l 100 setup.py etc src tests docs"
13+
args = "venv/bin/black --check -l 100 setup.py src tests"
1414
try:
1515
subprocess.check_output(args.split())
1616
except subprocess.CalledProcessError as e:
@@ -19,6 +19,6 @@ def test_codestyle(self):
1919
print("===========================================================")
2020
raise Exception(
2121
"Black style check failed; please format the code using:\n"
22-
" python -m black -l 100 setup.py etc src tests docs",
22+
" python -m black -l 100 setup.py src tests",
2323
e.output,
2424
) from e

0 commit comments

Comments
 (0)