https://github.com/brandon-rhodes/python-jplephem
Raw File
Tip revision: 01b813863e205f89d25402eabd411fdf0fa0c137 authored by Brandon Rhodes on 25 March 2024, 03:38:32 UTC
Fix a typo in a docstring
Tip revision: 01b8138
test.sh
#!/bin/bash

set -e

PYTHON=${PYTHON:-python}

cd "$(dirname "${BASH_SOURCE[0]}")"
projectdir=$PWD
cd ci
PYTHONPATH=$projectdir $PYTHON -m unittest test "$@"
back to top