Files
stacks-puppet-node/integration_tests/bin/ls-tests
2018-01-03 12:53:26 -05:00

11 lines
291 B
Bash
Executable File

#!/bin/sh
for t in $(ls ../blockstack_integration_tests/scenarios/*.py | sed -r 's/\.py$//g'); do
tn="$(basename "$t")"
fgrep "$tn" ../blockstack_integration_tests/tests_skip.txt >/dev/null
if [ $? -ne 0 ]; then
echo "blockstack_integration_tests.scenarios.$tn"
fi
done