You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -244,7 +244,7 @@ Additional references:
244
244
When updating your pull request, please **create new commits** and **don't rewrite the commits history**.
245
245
This way it's very easy for the reviewers to see diff between iterations.
246
246
If you rewrite the history in the pull request, review could be much slower.
247
-
The PR is likely to be squashed on merge to master by the *assignee*.
247
+
The PR is likely to be squash-merged to master by the *assignee*.
248
248
1.*Reviewers* are anyone who wants to contribute.
249
249
They are responsible for ensuring the code: addresses the issue being fixed, does not create new issues (functional, performance, reliability, or security), and implements proper design.
250
250
*Reviewers* should use the `Review changes` drop down to indicate they are done with their review.
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,3 @@
26
26
-[ ] N/A or can only be tested interactively
27
27
-**OR**
28
28
-[ ][Make sure you've added a new test if existing tests do not effectively test the code changed](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#before-submitting)
29
-
-[ ][Add `[feature]` to your commit messages if the change is significant or affects feature tests](https://github.com/PowerShell/PowerShell/blob/master/docs/testing-guidelines/testing-guidelines.md#requesting-additional-tests-for-a-pr)
Copy file name to clipboardExpand all lines: docs/testing-guidelines/testing-guidelines.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,11 @@ The Pester framework allows `Describe` blocks to be tagged, and our CI system re
55
55
One of the following tags must be used:
56
56
57
57
*`CI` - this tag indicates that the tests in the `Describe` block will be executed as part of the CI/PR process
58
-
*`Feature` - tests with this tag will not be executed as part of the CI/PR process, but they will be executed on a daily basis as part of a `cron` driven build.
59
-
They indicate that the test will be validating more behavior, or will be using remote network resources (ex: package management tests)
60
58
*`Scenario` - this tag indicates a larger scale test interacting with multiple areas of functionality and/or remote resources, these tests are also run daily.
59
+
*`Feature` - tests with this tag will not be executed as part of the CI/PR process,
60
+
but they will be executed on a daily basis as part of a `cron` driven build.
61
+
They indicate that the test will be validating more behavior,
62
+
or will be using remote network resources (ex: package management tests)
0 commit comments