-
Notifications
You must be signed in to change notification settings - Fork 39
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
Refactor web auth #2706
Refactor web auth #2706
Conversation
It isn't used by anything in auth, only in tests.
Codecov Report
@@ Coverage Diff @@
## master #2706 +/- ##
==========================================
+ Coverage 55.19% 55.21% +0.02%
==========================================
Files 561 565 +4
Lines 40917 40942 +25
==========================================
+ Hits 22584 22608 +24
- Misses 18333 18334 +1
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
I started, but wasn't able to complete my review before the weekend started, so I'll have to pick up where I left once I get back to work :)
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
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.
Looks like a solid cleanup to me.
Got lost in docker and LDAP issues while trying to test it out, but everthing worked out in the end.
👍 👍
This moves things around in order to make other things easier later, and easier to grasp in general. There should be no changes in functionality.
Pre-commit's black did not agree with everything that was there before so there are some additional changes.
This PR only does the easy bits, the real difficult part is splitting up/cleaning up
auth.authenticate
. When that is done what's left in__init__.py
can probably move tolocal.py
or something like that.