-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (19 loc) · 791 Bytes
/
appveyor.yml
File metadata and controls
23 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# See http://www.appveyor.com/docs/appveyor-yml for many more options
# Skip on updates to the readme.
# We can force this by adding [skip ci] or [ci skip] anywhere in commit message
skip_commits:
files:
- README.md
message: /updated readme.*|update readme.*s|update docs.*|update version.*|update appveyor.*/
install:
- cinst pester -y
build: false
test_script:
# temporary to get build process working again... install pester and add to psmodulepath
- ps: . .\build.ps1
# Test with native PS version
- ps: . .\Tests\appveyor.pester.ps1 -Test
# Test with PS version 2
# - ps: powershell.exe -version 2.0 -executionpolicy bypass -noprofile -file .\Tests\appveyor.pester.ps1 -Test
# Finalize pass - collect and upload results
- ps: . .\Tests\appveyor.pester.ps1 -Finalize