Skip to content

Commit

Permalink
Test script should fail if tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
nbarbettini committed Feb 19, 2016
1 parent 3ed9230 commit 81b3e6b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions script/test.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
$exitCode = 0

dnx -p test\Microsoft.Extensions.Configuration.Contrib.Stormpath.EnvironmentVariables.Test test
$exitCode = $LASTEXITCODE

dnx -p test\Microsoft.Extensions.Configuration.Contrib.Stormpath.ObjectReflection.Test test
$exitCode = $LASTEXITCODE

dnx -p test\Microsoft.Extensions.Configuration.Contrib.Stormpath.PropertiesFile.Test test
$exitCode = $LASTEXITCODE

dnx -p test\Microsoft.Extensions.Configuration.Contrib.Stormpath.Yaml.Test test
$exitCode = $LASTEXITCODE

dnx -p test\Stormpath.Configuration.Test test
$exitCode = $LASTEXITCODE

return $exitCode

0 comments on commit 81b3e6b

Please sign in to comment.