0.7.7
This release adds support for the following options with mayhem_run():
--warning-as-error Have the warnings be treated as errors.
--ci-url CI_URL Specify a URL to the Continuous Integration build you wish to associate with this run.
--merge-base-branch-name MERGE_BASE_BRANCH_NAME, --scm-merge-base-branch MERGE_BASE_BRANCH_NAME
The destination branch of a changeset. For example, the destination branch in a GitHub Pull Request or GitLab Merge Request.
--branch-name BRANCH_NAME, --scm-branch BRANCH_NAME
The source control branch for the code under test.
--revision REVISION, --scm-sha REVISION
The source control commit hash for the current code under test.
--parent-revision PARENT_REVISION, --scm-parent-revision PARENT_REVISION
The source control parent commit hash control parent commit sha on the current branch. This can also refer to revision on a different branch if the current branch does not havea
history of runs yet.
--scm-remote SCM_REMOTE
To add, simply modify your mayhem_run():
mayhem_run(
[opts]
ci_url = "my-ci.url.com",
[etc...]
)