zykrix
Re-added phidata as a normal folder (final fix)
c96b98a
Raw
History Blame Contribute Delete
493 Bytes
#!/bin/bash
############################################################################
#
# This script tests the phidata codebase
# Usage:
# ./scripts/test.sh
#
############################################################################
CURR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="$( dirname ${CURR_DIR} )"
source ${CURR_DIR}/_utils.sh
main() {
print_heading "Testing phidata"
print_heading "Running: pytest ${REPO_ROOT}"
pytest ${REPO_ROOT}
}
main "$@"