Skip to content
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

NXPY-232: Allow specifying the upload provider type in the batch details (Sourcery refactored) #257

Merged

Conversation

sourcery-ai[bot]
Copy link
Contributor

@sourcery-ai sourcery-ai bot commented Jul 1, 2021

Pull Request #256 refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

NOTE: As code is pushed to the original Pull Request, Sourcery will
re-run and update (force-push) this Pull Request with new refactorings as
necessary. If Sourcery finds no refactorings at any point, this Pull Request
will be closed automatically.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the impr-NXPY-232-provider-type branch, then run:

git fetch origin sourcery/impr-NXPY-232-provider-type
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from BoboTiG July 1, 2021 14:33
@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.


Sourcery AI seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.
You have signed the CLA already but the status is still pending? Let us recheck it.

@codecov
Copy link

codecov bot commented Jul 1, 2021

Codecov Report

Merging #257 (13d12af) into impr-NXPY-232-provider-type (0019d3f) will not change coverage.
The diff coverage is 100.00%.

Impacted file tree graph

@@                     Coverage Diff                      @@
##           impr-NXPY-232-provider-type     #257   +/-   ##
============================================================
  Coverage                        96.58%   96.58%           
============================================================
  Files                               29       29           
  Lines                             1788     1788           
============================================================
  Hits                              1727     1727           
  Misses                              61       61           
Flag Coverage Δ
unit 96.58% <100.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
nuxeo/uploads.py 96.74% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0019d3f...13d12af. Read the comment docs.

@BoboTiG BoboTiG force-pushed the impr-NXPY-232-provider-type branch from 6550022 to 0019d3f Compare July 1, 2021 14:54
@sourcery-ai sourcery-ai bot force-pushed the sourcery/impr-NXPY-232-provider-type branch from 9bcafcf to 13d12af Compare July 1, 2021 14:55
Comment on lines -77 to +81
if handler in handlers:
if handler != "default":
endpoint = f"{endpoint}/new/{handler}"
else:
if handler not in handlers:
raise InvalidUploadHandler(handler, handlers)

if handler != "default":
endpoint = f"{endpoint}/new/{handler}"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function API.post refactored with the following changes:

Comment on lines +335 to +338
elif chunked:
from .handlers.default import ChunkUploader as cls
else:
if chunked:
from .handlers.default import ChunkUploader as cls
else:
from .handlers.default import Uploader as cls
from .handlers.default import Uploader as cls
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function API.get_uploader refactored with the following changes:

@sourcery-ai
Copy link
Contributor Author

sourcery-ai bot commented Jul 1, 2021

Sourcery Code Quality Report

✅  Merging this PR will increase code quality in the affected files by 0.66%.

Quality metrics Before After Change
Complexity 3.61 ⭐ 3.24 ⭐ -0.37 👍
Method Length 47.50 ⭐ 47.50 ⭐ 0.00
Working memory 8.47 🙂 8.34 🙂 -0.13 👍
Quality 75.29% 75.95% 0.66% 👍
Other metrics Before After Change
Lines 353 351 -2
Changed files Quality Before Quality After Quality Change
nuxeo/uploads.py 75.29% ⭐ 75.95% ⭐ 0.66% 👍

Here are some functions in these files that still need a tune-up:

File Function Complexity Length Working Memory Quality Recommendation
nuxeo/uploads.py API.send_data 6 ⭐ 80 🙂 11 😞 64.02% 🙂 Extract out complex expressions
nuxeo/uploads.py API.complete 2 ⭐ 85 🙂 12 😞 65.49% 🙂 Extract out complex expressions
nuxeo/uploads.py API.get_uploader 7 ⭐ 48 ⭐ 10 😞 69.91% 🙂 Extract out complex expressions
nuxeo/uploads.py API.execute 3 ⭐ 68 🙂 10 😞 70.67% 🙂 Extract out complex expressions

Legend and Explanation

The emojis denote the absolute quality of the code:

  • ⭐ excellent
  • 🙂 good
  • 😞 poor
  • ⛔ very poor

The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request.


Please see our documentation here for details on how these metrics are calculated.

We are actively working on this report - lots more documentation and extra metrics to come!

Help us improve this quality report!

@BoboTiG BoboTiG merged commit 95dc38b into impr-NXPY-232-provider-type Jul 1, 2021
@BoboTiG BoboTiG deleted the sourcery/impr-NXPY-232-provider-type branch July 1, 2021 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants