Skip to content

Commit

Permalink
fix: Ignore __init__ for doctests due to circular import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iwishiwasaneagle committed Apr 25, 2023
1 parent 0b2b805 commit 3cfb121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Run doctests
run : |
python -m doctest $(\
find src/jdrones -iname "*.py" -not -iname "__main__.py" | \
find src/jdrones -iname "*.py" -not -iname "__main__.py" -not -iname "__init__.py"| \
tr '\n' ' ' \
)
Expand Down

0 comments on commit 3cfb121

Please sign in to comment.