mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-27 05:35:28 -04:00
12 lines
255 B
Bash
Executable file
12 lines
255 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# author: Ole Schuett
|
|
|
|
# shellcheck disable=SC1091
|
|
source /opt/cp2k-toolchain/install/setup
|
|
|
|
echo -e "\n========== Running Conventions Test =========="
|
|
cd /workspace/cp2k/tools/conventions
|
|
./test_conventions.sh #TODO port to Python3
|
|
|
|
#EOF
|