mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-28 21:35:42 +00:00
9b8ef511d2
Signed-off-by: Matthew Johnson <matthew.johnson@intel.com>
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
check: autospec/*.py
|
|
@flake8 --max-line-length=199 --ignore=E722 $^
|
|
|
|
test_pkg_integrity:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_pkg_integrity.py
|
|
|
|
test_tarball:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_tarball.py
|
|
|
|
test_specfile:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_specfile.py
|
|
|
|
test_abireport:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_abireport.py
|
|
|
|
test_commitmessage:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_commitmessage.py
|
|
|
|
test_files:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_files.py
|
|
|
|
test_license:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_license.py
|
|
|
|
test_buildpattern:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_buildpattern.py
|
|
|
|
test_build:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_build.py
|
|
|
|
test_buildreq:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_buildreq.py
|
|
|
|
test_specdescription:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_specdescription.py
|
|
|
|
test_count:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_count.py
|
|
|
|
test_test:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_test.py
|
|
|
|
test_util:
|
|
PYTHONPATH=${CURDIR}/autospec python3 tests/test_util.py
|
|
|
|
test_autospec:
|
|
python3 tests/test_autospec.py -c ${CASES}
|
|
|
|
unittests:
|
|
PYTHONPATH=${CURDIR}/autospec coverage run -m unittest discover -b -s tests -p 'test_*.py' && coverage report
|
|
|
|
coverage:
|
|
coverage report -m
|