From 3455ddf3fbb6b5910a4970eca448a57fda796bad Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Fri, 22 Mar 2024 13:54:06 +1000 Subject: [PATCH] updated PR template (#6773) Signed-off-by: Sally MacFarlane --- .github/pull_request_template.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6dd62ca8b86..7e8cde29e7b 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -12,10 +12,10 @@ - [ ] Considered the changelog and included an [update if required](https://wiki.hyperledger.org/display/BESU/Changelog). - [ ] For database changes (e.g. KeyValueSegmentIdentifier) considered compatibility and performed forwards and backwards compatibility tests -### Most advanced CI tests are deferred until PR approval, but you could: +### Locally, you can run these tests to catch failures early: -- [ ] locally run all unit tests via: `./gradlew build` -- [ ] locally run all acceptance tests via: `./gradlew acceptanceTest` -- [ ] locally run all integration tests via: `./gradlew integrationTest` -- [ ] locally run all reference tests via: `./gradlew ethereum:referenceTests:referenceTests` +- [ ] unit tests: `./gradlew build` +- [ ] acceptance tests: `./gradlew acceptanceTest` +- [ ] integration tests: `./gradlew integrationTest` +- [ ] reference tests: `./gradlew ethereum:referenceTests:referenceTests`