Skip to content

Commit

Permalink
added support for parallel run designation; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmerwin committed Jan 29, 2015
1 parent d76cd04 commit 99779ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/coveralls/configuration.rb
Expand Up @@ -16,6 +16,9 @@ def self.configuration
if ENV['COVERALLS_REPO_TOKEN']
config[:repo_token] = ENV['COVERALLS_REPO_TOKEN']
end
if ENV['COVERALLS_PARALLEL'] && ENV['COVERALLS_PARALLEL'] != "false"
config[:parallel] = true
end
if ENV['TRAVIS']
set_service_params_for_travis(config, yml ? yml['service_name'] : nil)
elsif ENV['CIRCLECI']
Expand Down
2 changes: 1 addition & 1 deletion lib/coveralls/version.rb
@@ -1,3 +1,3 @@
module Coveralls
VERSION = "0.7.3"
VERSION = "0.7.4"
end

0 comments on commit 99779ad

Please sign in to comment.