mirror of
https://github.com/beautifier/js-beautify.git
synced 2024-11-27 06:30:32 +00:00
d7f4e362c0
Unites discover in python requires that tests be importable modules. The means they have to have a __init.py__ in their directory.
11 lines
141 B
Bash
Executable File
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
|