Skip to content
New issue

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

Convert to use shared AppVeyor module and Markdown/Example Tests - Fixes #68 #77

Merged
merged 28 commits into from
Jul 22, 2017
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
56c9070
- Updated AppVeyor.yml to use AppVeyor.psm1 module in DSCResource.Tests.
PlagueHO Feb 2, 2017
ca00ae3
Convert to Start-Tasks to Invoke
PlagueHO Feb 5, 2017
088eacb
Fixed up Markdown tests
PlagueHO Feb 8, 2017
61a72bd
Suppress example tests
PlagueHO Feb 9, 2017
8a50471
Suppress example tests
PlagueHO Feb 9, 2017
97dec78
Added test opt-in file
PlagueHO Feb 9, 2017
7d78ebd
Fix up merge conflicts
PlagueHO Jul 3, 2017
d0a2f6a
Fix failing errors
PlagueHO Jul 3, 2017
c822dd1
Switch of Markdown line length rule
PlagueHO Jul 3, 2017
2b93175
Fixed long line errors in Markdown
PlagueHO Jul 5, 2017
0737477
More fixes to README.MD
PlagueHO Jul 5, 2017
987784a
Final fixup to README.MD
PlagueHO Jul 5, 2017
b29e813
Convert AppVeyor to use PowerShell default DSCREsource.tests
PlagueHO Jul 5, 2017
884053e
Fix up AppVeyor
PlagueHO Jul 5, 2017
2629d6a
Fix failing tests
PlagueHO Jul 5, 2017
c96ad00
Minor clean up to README.MD
PlagueHO Jul 5, 2017
1b185c0
Added missing READMD.MD entries
PlagueHO Jul 5, 2017
69f3b58
Fix merge conflicts
PlagueHO Jul 11, 2017
6441f31
Added CodeCov.io badges
PlagueHO Jul 11, 2017
6a3382c
Changes as per PR comments
PlagueHO Jul 12, 2017
afa8e48
Fixed merge conflicts
PlagueHO Jul 12, 2017
a11b744
Fixed README.MD after fixing merge conflict
PlagueHO Jul 12, 2017
0a53790
Merge branch 'dev' of https://github.com/PowerShell/xComputerManageme…
PlagueHO Jul 16, 2017
afd3917
Corrected README.MD after previous change
PlagueHO Jul 16, 2017
e65f65c
Clean up and correct badge
PlagueHO Jul 17, 2017
23f8cee
Fix up after PR comments
PlagueHO Jul 17, 2017
0f06065
Try new PSSA Custom rules
PlagueHO Jul 18, 2017
1861413
Revert to using standard DSCResource.tests
PlagueHO Jul 18, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .MetaTestOptIn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"Common Tests - Validate Markdown Files"
]
26 changes: 26 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
codecov:
notify:
require_ci_to_pass: no
# dev should be the baseline for reporting
branch: dev

comment:
layout: "reach, diff"
behavior: default

coverage:
range: 50..80
round: down
precision: 0

status:
project:
default:
# Set the overall project code coverage requirement to 70%
target: 70
patch:
default:
# Set the pull request requirement to not regress overall coverage by more than 5%
# and let codecov.io set the goal for the code changed in the patch.
target: auto
threshold: 5
10 changes: 10 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"default": true,
"MD029": {
"style": "ordered"
},
"MD013": true,
"MD024": true,
"MD034": true,
"no-hard-tabs": true
}
Loading