We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
As a user I would like to pass an optional parameter to mp.run to specify when I want to create a report
Describe the solution you'd like
Something like
mp.run(spec_a, spec_b, report=True, r_path="./reports/")
Describe alternatives you've considered
There is already a public method to specify a report but it has to be called after mp.run, which can cause confusion.
For example, this would not work:
mp.generate_report('./reports/') mp.run(...)
But this works:
mp.run(...) mp.generate_report('./reports/')
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
As a user I would like to pass an optional parameter to mp.run to specify when I want to create a report
Describe the solution you'd like
Something like
Describe alternatives you've considered
There is already a public method to specify a report but it has to be called after mp.run, which can cause confusion.
For example, this would not work:
But this works:
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: