Skip to content

Commit

Permalink
Fix entrypoint script
Browse files Browse the repository at this point in the history
  • Loading branch information
jslane-h committed Dec 4, 2024
1 parent 52678b0 commit ab27c8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ echo $GITHUB_WORKSPACE

openstudio measure -t ./lib/measures >> $GITHUB_WORKSPACE/measure_check_output.txt

for dir in \$(find . -type f -name 'measure.py' -exec dirname {} \; | sort -u); do \
pytest \$dir >> $GITHUB_WORKSPACE/pytest_output.txt; \
for dir in $(find . -type f -name 'measure.py' -exec dirname {} \; | sort -u); do
pytest "$dir" >> "$GITHUB_WORKSPACE/pytest_output.txt"
done

0 comments on commit ab27c8a

Please sign in to comment.