diff options
author | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2022-09-13 07:22:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 08:22:04 -0600 |
commit | e97915eef288f9494a6885f3e603d700dce67126 (patch) | |
tree | 04691ce2fa7e95b0d2edb3fda2a5123557d1fb42 /.github | |
parent | 2d895a9ec3a73c6b749741375c7cb67d13a181cd (diff) | |
download | spack-e97915eef288f9494a6885f3e603d700dce67126.tar.gz spack-e97915eef288f9494a6885f3e603d700dce67126.tar.bz2 spack-e97915eef288f9494a6885f3e603d700dce67126.tar.xz spack-e97915eef288f9494a6885f3e603d700dce67126.zip |
Add an issue template for reporting package stand-alone test failures (#32487)
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/test_error.yml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/test_error.yml b/.github/ISSUE_TEMPLATE/test_error.yml new file mode 100644 index 0000000000..2cc11af155 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/test_error.yml @@ -0,0 +1,62 @@ +name: "\U0001F4A5 Tests error" +description: Some package in Spack had stand-alone tests that didn't pass +title: "Testing issue: " +labels: [test-error] +body: + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce the failure(s) or link(s) to test output(s) + description: | + Fill in the test output from the exact spec that is having stand-alone test failures. Links to test outputs (e.g., CDash) can also be provided. + value: | + ```console + $ spack spec -I <spec> + ... + ``` + - type: textarea + id: error + attributes: + label: Error message + description: | + Please post the error message from spack inside the `<details>` tag below: + value: | + <details><summary>Error message</summary><pre> + ... + </pre></details> + validations: + required: true + - type: textarea + id: information + attributes: + label: Information on your system or the test runner + description: Please include the output of `spack debug report` for your system. + validations: + required: true + - type: markdown + attributes: + value: | + If you have any relevant configuration detail (custom `packages.yaml` or `modules.yaml`, etc.) you can add that here as well. + - type: textarea + id: additional_information + attributes: + label: Additional information + description: | + Please upload test logs or any additional information about the problem. + - type: markdown + attributes: + value: | + Some packages have maintainers who have volunteered to debug build failures. Run `spack maintainers <name-of-the-package>` and **@mention** them here if they exist. + - type: checkboxes + id: checks + attributes: + label: General information + options: + - label: I have reported the version of Spack/Python/Platform/Runner + required: true + - label: I have run `spack maintainers <name-of-the-package>` and **@mentioned** any maintainers + required: true + - label: I have uploaded any available logs + required: true + - label: I have searched the issues of this repo and believe this is not a duplicate + required: true |