Skip to content
Snippets Groups Projects
  • Kenny Sharma's avatar
    [NRRPLT-4122] Added repo build/release structure and MUSIC XML config. · 2ba896d8
    Kenny Sharma authored
    Added repository structure to support build/release of python
    packages by Jenkins for use in ExDBackend.
    
    Initial commit of modified MUSIC XML configuration generation/handling
    code by Martin Schulze towards supporting [NRRPLT-3895].
    
    Change-Id: I0b526dc3608ddb04fa5d724aa22c921f4e2787d1
    2ba896d8
run_tests.sh 292 B
#!/bin/bash
# This script is designed for local usage.

# Code coverage does not seem work without /nfs4 or /gpfs access
make test-nocover
RET=$?


if [ $RET == 0 ]; then
    echo -e "\033[32mTest sucessfull.\e[0m"
else
    echo -e "\033[31mTest failed.\e[0m See errors above."
fi

exit $RET