-
Notifications
You must be signed in to change notification settings - Fork 299
Add isort to CI process #360
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
Conversation
This is an annoying dev vs CI issue. I'll keep poking on this later, but the tl;dr is that isort works locally in my dev env, but then fails to consider django-polymorphic and pytest_factoryboy as third party packages on Travis.
Codecov Report
@@ Coverage Diff @@ ## develop #360 +/- ## =========================================== - Coverage 92.82% 92.81% -0.01% =========================================== Files 51 51 Lines 2647 2644 -3 =========================================== - Hits 2457 2454 -3 Misses 190 190
Continue to review full report at Codecov.
|
Uh oh!
There was an error while loading. Please reload this page.
This branch adds
isort
to the CI process so that import ordering issues can be left to a tool. It also does an initial run through on the code so that everything respects the isort settings.Fixes #344