Skip to content

Commit

Permalink
Exclude DBTest.FileCreationRandomFailure as a long running test
Browse files Browse the repository at this point in the history
  Increase concurrency to 18
  Fix exclusion but in the ps script
  • Loading branch information
yuslepukhin committed Nov 17, 2015
1 parent 2a0510c commit 94e39e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ build:
verbosity: minimal
test:
test_script:
- ps: build_tools\run_ci_db_test.ps1 -EnableRerun -Run db_test -Exclude DBTest.Randomized -Concurrency 16
- ps: build_tools\run_ci_db_test.ps1 -EnableRerun -Run db_test -Exclude DBTest.Randomized,DBTest.FileCreationRandomFailure -Concurrency 18
- ps: build_tools\run_ci_db_test.ps1 -Run env_test -Concurrency 1

2 changes: 1 addition & 1 deletion build_tools/run_ci_db_test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function Normalize-DbTests($HashTable) {
function MakeAndAdd([string]$token, $HashTable) {
$test_name = $token -replace '.exe$', ''
$log_name = -join ($test_name, ".log")
if(!$ExcludeTests.Contains($test)) {
if(!$ExcludeTests.Contains($test_name)) {
$HashTable.Add($test_name, $log_name)
} else {
Write-Warning "Test $test_name is excluded"
Expand Down

0 comments on commit 94e39e2

Please sign in to comment.