-
Notifications
You must be signed in to change notification settings - Fork 188
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
Render and export emailable report of past reports #159
Conversation
@ignaciocabeza Did you test your changes in the docker container? ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline |
I faced that issue when I was configuring the dev environment. There is some issue with the other url. I found a workaround quick with allure-framework/allure2#1198 (comment) And yes, I tried with Again, I wasn't sure about this last change:
So, I will do more tests tomorrow (I live in East Australia Timezone) to be sure that the refactor is backward compatible. Let me know if there is something that may break some other feature. |
@ignaciocabeza I have some checks in github actions. You should run those in your GH too. Push the new Allure repo url in the docker files, please. I will check your PR in detail when you passed those checks. |
Hi @fescobar, I activated actions now. It was failing because some pylint error, I fixed it but it's still failing 😖. This one are still failing and it comes from my changes:
And the other pylint issues are from code that didn't change related on how do you use About this:
I refactor the code around |
@ignaciocabeza You can disable that rule for this specific method adding this: def emailable_report_render_endpoint(): #pylint: disable=too-many-locals Like here but with a different pylint rule |
Hi @fescobar, I added that lint exception, but other lints no related to my change are still failing:
I can add those exceptions as well. Let me know. |
@fescobar Done! |
6b05487
to
9bc928d
Compare
Hi @fescobar.
The changes I made were:
report
toemailable-report/export
andemailable-report/render
. Default value:latest
{REPORT}_...html
. <- I wonder if this change can break something. Maybe we shouldn't add a prefix when report it's the latest.Solve #158