-
-
Notifications
You must be signed in to change notification settings - Fork 429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove tests from pyproject #941
Conversation
Thanks for opening this pull request! We'll make sure it's perfect before merging 🤗 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #941 +/- ##
==========================================
- Coverage 54.86% 54.61% -0.25%
==========================================
Files 303 304 +1
Lines 14255 14333 +78
==========================================
+ Hits 7821 7828 +7
- Misses 6434 6505 +71 ☔ View full report in Codecov by Sentry. |
MANIFEST.in
Outdated
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
|
||
recursive-include docs *.rst conf.py *.jpg *.png *.gif | ||
|
||
prune tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can't we do recursive-exclude
instead of prune?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, I applied it
thanks! |
when install neurokit2 by pip, tests folder in neurokit repository are installed in python env. they can conflict with other local tests directory.
This PR removed tests folder from setup.py by editing MANIFEST.in