Skip to content

Commit 5fc4c36

Browse files
committed
don't test docs and etc
- codestyle test for `etc`, will be handled by `skeleton` - see: aboutcode-org/skeleton#54 Signed-off-by: keshav-space <keshav6240@gmail.com>
1 parent fd9d341 commit 5fc4c36

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)