django_example_ynh/tests/test_lint.py
2020-12-28 20:14:57 +01:00

15 lines
327 B
Python

import shutil
import subprocess
from pathlib import Path
import django_ynh
BASE_PATH = Path(django_ynh.__file__).parent.parent
def test_lint():
assert Path(BASE_PATH, 'Makefile').is_file()
make_bin = shutil.which('make')
assert make_bin is not None
subprocess.check_call([make_bin, 'lint'], cwd=BASE_PATH)