-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Resolve #122 -- Add Django-RQ support for async image processing #124
Conversation
krtko1
commented
Sep 5, 2023
- django-rq: add django-rq support
- django-rq: test django-rq support
resolves #122 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #124 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 13 13
Lines 449 459 +10
=========================================
+ Hits 449 459 +10
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Excellent, this looks like a promising start. I approved the CI run for you. Unfortunately, the setup isn't working yet. Redis is currently only installed for dramatiq:
django-pictures/.github/workflows/ci.yml
Lines 140 to 141 in 2ad81c7
- name: Install redis | |
if: matrix.extras == 'dramatiq' |
A little … || matrix.extras == 'django-rq'
should do the trick.
@codingjoe Can you look at this? |
ping? |
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.
Hi, please excuse the delay. I took me a little while to catch up with all my notifications on GitHub.
Hi @krtko1 the CI suite still fails. Let me know if you ned any help to fix it. I merged the latest main branch into your feature branch, to enable Python 3.12 tests as well. Cheers! Joe |
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.
OK, I took the liberty and pushed this over the finish line. Took me a minute, since I have never used Django-RQ. Buuut, I think I managed well. Enjoy!
Thanks a lot |