Skip to content

Commit

Permalink
Adjust so that it fails if a command is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
nielstron committed Apr 11, 2023
1 parent 2b11e29 commit 8f683f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ script:
- >
coverage run -a --source=opshin -m opshin build examples/smart_contracts/assert_sum.py
- >
find examples -type f -name "*.py" -not \( -name "broken*" -o -name "extract*" \) -exec
coverage run -a --source=opshin -m opshin compile {} \;
for i in $(find examples -type f -name "*.py" -not \( -name "broken*" -o -name "extract*" \)); do
coverage run -a --source=opshin -m opshin compile "$i"
done
after_success:
- coverage report
Expand Down

0 comments on commit 8f683f4

Please sign in to comment.