mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Alex Kotov
725e381a9e
* Test options made stable * Added options to enable tests that require Python 3 with YAML and Jinja2
8 lines
172 B
Bash
Executable file
8 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
"$REPO/configure" --enable-tests
|