Skip to content

Commit

Permalink
Fix pytest (#2584)
Browse files Browse the repository at this point in the history
- check/pytest-changed-files is broken
- The list of fils to test is put in quotes so it is considered to
be one file by pytest rather than a list of files.
  • Loading branch information
dstrain115 authored and CirqBot committed Nov 21, 2019
1 parent 96f5f54 commit 8408f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check/pytest-changed-files
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ echo "Found ${num_changed} test files associated with changes." >&2
if [ "${num_changed}" -eq 0 ]; then
exit 0
fi
pytest ${rest} "${changed[@]}"
pytest ${rest} ${changed[@]}

0 comments on commit 8408f89

Please sign in to comment.