Skip to content

Commit

Permalink
fix coverage check
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Oct 7, 2024
1 parent ec1fc89 commit f607ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
root="$file"
# Keep going up the directory tree until we find a directory containing a marker file
# (e.g., 'pyproject.toml' for python projects)
while [[ ! -f "$root/pyproject.toml" && "$root" != "." && "$root" != "/" ]]; do
while [[ ! -f "$root/pyproject.toml" && "$root" != "." && "$root" != "/" && "$root" != "./" ]]; do
root=$(dirname "$root")
done
Expand Down

0 comments on commit f607ee3

Please sign in to comment.