forked from ungleich-public/cdist
Add test-remote target - remote is not tested with test target
This commit is contained in:
parent
b0c5bc793d
commit
5090038e4c
3 changed files with 13 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -247,5 +247,8 @@ pub:
|
|||
test:
|
||||
$(helper) $@
|
||||
|
||||
test-remote:
|
||||
$(helper) $@
|
||||
|
||||
pep8:
|
||||
$(helper) $@
|
||||
|
|
|
@ -359,6 +359,11 @@ eof
|
|||
fi
|
||||
;;
|
||||
|
||||
test-remote)
|
||||
export PYTHONPATH="$(pwd -P)"
|
||||
python3 -m cdist.test.exec.remote
|
||||
;;
|
||||
|
||||
pep8)
|
||||
pep8 "${basedir}" "${basedir}/scripts/cdist" | less
|
||||
;;
|
||||
|
|
|
@ -421,6 +421,11 @@ eof
|
|||
fi
|
||||
;;
|
||||
|
||||
test-remote)
|
||||
export PYTHONPATH="$(pwd -P)"
|
||||
python3 -m cdist.test.exec.remote
|
||||
;;
|
||||
|
||||
pep8)
|
||||
pep8 "${basedir}" "${basedir}/scripts/cdist" | less
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue