Files
stacks-puppet-node/integration_tests/bin/ls-tests
Aaron Blankstein fc1ce36ba4 Revert "Undo merge develop"
This reverts commit 5214628583.
2018-01-10 16:47:15 -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