Skip to content
Snippets Groups Projects
Commit a9389edc authored by Timo Koch's avatar Timo Koch
Browse files

[ci] Add test selection for Python tests

parent 7fa86e86
No related branches found
No related tags found
1 merge request!2802[ci] Add test selection for Python tests
Pipeline #7863 passed
+2
......@@ -81,10 +81,12 @@ select tests:
echo "No reference information given."
echo "Skipping test selection, build/test stages will consider all tests!"
touch affectedtests.json
touch changedfiles.txt
fi
artifacts:
paths:
- affectedtests.json
- changedfiles.txt
expire_in: 3 hours
needs:
- job: configure
......@@ -145,9 +147,21 @@ test python:
script:
- source bin/testing/ci-setup-python-env.sh
- |
pushd build-cmake
ctest --output-on-failure -L python
popd
if ([ ! -s changedfiles.txt ] || grep -q python "changedfiles.txt"); then
if [ ! -s changedfiles.txt ]; then
echo "Skipping test selection: considering all Python tests."
else
echo "Detected changes in the Python bindings/Python code: considering all Python tests."
fi
source bin/testing/ci-setup-python-env.sh
pushd build-cmake
ctest --output-on-failure -L python
popd
else
echo "No changes in the Python bindings/Python code detected: skipping tests."
fi
needs:
- job: configure
artifacts: true
- job: select tests
artifacts: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment