js-beautify/python/js-beautify-test
Liam Newman d7f4e362c0 Re-enable discovery and execution of python tests
Unites discover in python requires that tests be importable modules.
The means they have to have a __init.py__ in their directory.
2016-01-22 11:06:04 -08:00

11 lines
141 B
Bash
Executable File

#! /bin/sh
#
# Test suite launcher
#
if [ -z $PYTHON ]; then
env python js-beautify-test.py
else
env $PYTHON js-beautify-test.py
fi