mirror of
git://holbrook.no/eth-contract-registry
synced 2024-11-16 06:26:47 +01:00
14 lines
152 B
Bash
14 lines
152 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
#for f in `ls tests/*.py`; do
|
|
#python $f
|
|
# if [ $? -gt 0 ]; then
|
|
# exit 1
|
|
# fi
|
|
#done
|
|
pytest -s -v -x ./tests
|
|
set +x
|
|
set +e
|