Add test-remote target - remote is not tested with test target

This commit is contained in:
Darko Poljak 2018-03-09 10:00:14 +01:00
parent b0c5bc793d
commit 5090038e4c
3 changed files with 13 additions and 0 deletions

View File

@ -247,5 +247,8 @@ pub:
test:
$(helper) $@
test-remote:
$(helper) $@
pep8:
$(helper) $@

View File

@ -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
;;

View File

@ -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
;;