mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-24 16:19:50 +08:00
11 lines
291 B
Bash
Executable File
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
|
|
|