1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00

Makefile: add new rule test-suite

Sometimes I don't want to wait for pylint to complete.  Add a new
makefile rule that launches directly the tests suite.

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>

Closes: #949
Approved by: baude
This commit is contained in:
Giuseppe Scrivano
2017-03-23 17:03:33 +01:00
committed by Atomic Bot
parent e92d7b10c6
commit 3925aa6da2

View File

@@ -20,13 +20,15 @@ all: python-build docs pylint-check dockertar-sha256-helper gotar
test-python3-pylint:
$(PYTHON3_PYLINT) --disable=all --enable=E --enable=W --additional-builtins=_ *.py atomic Atomic tests/unit/*.py -d=no-absolute-import,print-statement,no-absolute-import,bad-builtin
.PHONY: test check
.PHONY: test check test-suite
check: test
test: all test-python3-pylint
test-suite:
./test.sh
test: all test-python3-pylint test-suite
test-destructive: all
ENABLE_DESTRUCTIVE=1 ./test.sh