software/kisstdlib/./sanity.sh

A set of modules for the Python programming language designed for system programming with conceptually and algebraically simple primitives.

Files

Raw Source

Contents

#!/bin/sh -e

black $1 .
mypy
pytest -k 'not slow'
pylint .
./update-readme.sh
if [[ "$1" == "--check" ]]; then
    ./test-example.sh
fi