Skip to content

Commit

Permalink
Try parallel runner on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hanneskaeufler committed Dec 17, 2019
1 parent 0e17b48 commit 390e2bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ workflows:
- test-crystal-0.32.0
- test-crystal-0.31.1
- test-crystal-0.30.1
- test-mutations
nightly:
triggers:
- schedule:
Expand Down
2 changes: 1 addition & 1 deletion bin/test-mutations
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

list=(`find spec -name '*_spec.cr' -and -not -name 'integration_spec.cr'`)
printf '%s\n' "${list[@]}" | sort
./bin/crytic test --min-msi=70.0 --reporters=Console,Stryker,ConsoleFileSummary "${list[@]}"
./bin/crytic test-parallel --min-msi=70.0 --reporters=Console,Stryker,ConsoleFileSummary "${list[@]}"
2 changes: 1 addition & 1 deletion src/crytic/runner/runner.cr
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ require "./run"
module Crytic::Runner
abstract class Runner
abstract def run(run : Run, side_effects : SideEffects) : Bool
end
end
end

0 comments on commit 390e2bb

Please sign in to comment.