Skip to content
Snippets Groups Projects
Commit d3530450 authored by Simon McVittie's avatar Simon McVittie
Browse files

ci: Run tests with python3.5 if available

parent fdaf952e
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,13 @@ pipeline { ...@@ -142,7 +142,13 @@ pipeline {
--archive "${WORKSPACE}" \ --archive "${WORKSPACE}" \
${CI_ALLOW_MISSING_SOURCES:+--allow-missing-sources} \ ${CI_ALLOW_MISSING_SOURCES:+--allow-missing-sources} \
${NULL+} ${NULL+}
prove -v ./tests/relocatable-install.py :: \
if ! PYTHON=$(command -v python3.5); then
PYTHON=$(command -v python3)
fi
prove -v --exec "${PYTHON}" \
./tests/relocatable-install.py :: \
"${WORKSPACE}/relocatable-install" "${WORKSPACE}/relocatable-install"
''' '''
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment