Merge pull request #10514 from thomasrockhu/codecov-action
Add Codecov GitHub Action step
This commit is contained in:
commit
bd4c37bfda
2
.github/codecov.yml
vendored
2
.github/codecov.yml
vendored
@ -1,5 +1,3 @@
|
|||||||
fixes:
|
|
||||||
- "::Library/Homebrew/"
|
|
||||||
coverage:
|
coverage:
|
||||||
round: nearest
|
round: nearest
|
||||||
status:
|
status:
|
||||||
|
|||||||
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
@ -209,7 +209,8 @@ jobs:
|
|||||||
brew tests ${{ matrix.test-flags }}
|
brew tests ${{ matrix.test-flags }}
|
||||||
env:
|
env:
|
||||||
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
HOMEBREW_CODECOV_TOKEN: 3ea0364c-80ce-47a3-9fba-93a940d4b5d7
|
|
||||||
|
- uses: codecov/codecov-action@e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1
|
||||||
|
|
||||||
test-default-formula-linux:
|
test-default-formula-linux:
|
||||||
name: test default formula (Linux)
|
name: test default formula (Linux)
|
||||||
@ -286,9 +287,9 @@ jobs:
|
|||||||
run: brew tests --online --coverage
|
run: brew tests --online --coverage
|
||||||
env:
|
env:
|
||||||
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# Set variables for coverage reporting.
|
|
||||||
HOMEBREW_CODECOV_TOKEN: 3ea0364c-80ce-47a3-9fba-93a940d4b5d7
|
|
||||||
# These cannot be queried at the macOS level on GitHub Actions.
|
# These cannot be queried at the macOS level on GitHub Actions.
|
||||||
HOMEBREW_LANGUAGES: en-GB
|
HOMEBREW_LANGUAGES: en-GB
|
||||||
|
|
||||||
- run: brew test-bot --only-formulae --test-default-formula
|
- run: brew test-bot --only-formulae --test-default-formula
|
||||||
|
|
||||||
|
- uses: codecov/codecov-action@e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -92,7 +92,6 @@
|
|||||||
**/vendor/bundle/ruby/*/gems/colorize-*/
|
**/vendor/bundle/ruby/*/gems/colorize-*/
|
||||||
**/vendor/bundle/ruby/*/gems/commander-*/
|
**/vendor/bundle/ruby/*/gems/commander-*/
|
||||||
**/vendor/bundle/ruby/*/gems/connection_pool-*/
|
**/vendor/bundle/ruby/*/gems/connection_pool-*/
|
||||||
**/vendor/bundle/ruby/*/gems/codecov-*/
|
|
||||||
**/vendor/bundle/ruby/*/gems/diff-lcs-*/
|
**/vendor/bundle/ruby/*/gems/diff-lcs-*/
|
||||||
**/vendor/bundle/ruby/*/gems/docile-*/
|
**/vendor/bundle/ruby/*/gems/docile-*/
|
||||||
**/vendor/bundle/ruby/*/gems/domain_name-*/
|
**/vendor/bundle/ruby/*/gems/domain_name-*/
|
||||||
|
|||||||
@ -5,7 +5,6 @@ source "https://rubygems.org"
|
|||||||
# installed gems (should all be require: false)
|
# installed gems (should all be require: false)
|
||||||
gem "bootsnap", require: false
|
gem "bootsnap", require: false
|
||||||
gem "byebug", require: false
|
gem "byebug", require: false
|
||||||
gem "codecov", require: false
|
|
||||||
gem "minitest", require: false
|
gem "minitest", require: false
|
||||||
gem "nokogiri", require: false
|
gem "nokogiri", require: false
|
||||||
gem "parallel_tests", require: false
|
gem "parallel_tests", require: false
|
||||||
@ -19,6 +18,7 @@ gem "rspec-wait", require: false
|
|||||||
gem "rubocop", require: false
|
gem "rubocop", require: false
|
||||||
gem "rubocop-ast", require: false
|
gem "rubocop-ast", require: false
|
||||||
gem "simplecov", require: false
|
gem "simplecov", require: false
|
||||||
|
gem "simplecov-cobertura", require: false
|
||||||
gem "sorbet", require: false
|
gem "sorbet", require: false
|
||||||
gem "sorbet-runtime", require: false
|
gem "sorbet-runtime", require: false
|
||||||
gem "tapioca", require: false
|
gem "tapioca", require: false
|
||||||
|
|||||||
@ -14,8 +14,6 @@ GEM
|
|||||||
bootsnap (1.7.3)
|
bootsnap (1.7.3)
|
||||||
msgpack (~> 1.0)
|
msgpack (~> 1.0)
|
||||||
byebug (11.1.3)
|
byebug (11.1.3)
|
||||||
codecov (0.5.1)
|
|
||||||
simplecov (>= 0.15, < 0.22)
|
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
colorize (0.8.1)
|
colorize (0.8.1)
|
||||||
commander (4.5.2)
|
commander (4.5.2)
|
||||||
@ -141,6 +139,8 @@ GEM
|
|||||||
docile (~> 1.1)
|
docile (~> 1.1)
|
||||||
simplecov-html (~> 0.11)
|
simplecov-html (~> 0.11)
|
||||||
simplecov_json_formatter (~> 0.1)
|
simplecov_json_formatter (~> 0.1)
|
||||||
|
simplecov-cobertura (1.4.2)
|
||||||
|
simplecov (~> 0.8)
|
||||||
simplecov-html (0.12.3)
|
simplecov-html (0.12.3)
|
||||||
simplecov_json_formatter (0.1.2)
|
simplecov_json_formatter (0.1.2)
|
||||||
sorbet (0.5.6274)
|
sorbet (0.5.6274)
|
||||||
@ -180,7 +180,6 @@ DEPENDENCIES
|
|||||||
activesupport
|
activesupport
|
||||||
bootsnap
|
bootsnap
|
||||||
byebug
|
byebug
|
||||||
codecov
|
|
||||||
concurrent-ruby
|
concurrent-ruby
|
||||||
mechanize
|
mechanize
|
||||||
minitest
|
minitest
|
||||||
@ -203,6 +202,7 @@ DEPENDENCIES
|
|||||||
rubocop-sorbet
|
rubocop-sorbet
|
||||||
ruby-macho
|
ruby-macho
|
||||||
simplecov
|
simplecov
|
||||||
|
simplecov-cobertura
|
||||||
sorbet
|
sorbet
|
||||||
sorbet-runtime
|
sorbet-runtime
|
||||||
sorbet-runtime-stub
|
sorbet-runtime-stub
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# DO NOT EDIT MANUALLY
|
# DO NOT EDIT MANUALLY
|
||||||
# This is an autogenerated file for types exported from the `codecov` gem.
|
# This is an autogenerated file for types exported from the `simplecov-cobertura` gem.
|
||||||
# Please instead update this file by running `tapioca sync`.
|
# Please instead update this file by running `tapioca sync`.
|
||||||
|
|
||||||
# typed: true
|
# typed: true
|
||||||
@ -532,6 +532,14 @@ class ActiveSupport::CurrentAttributes
|
|||||||
def _reset_callbacks(); end
|
def _reset_callbacks(); end
|
||||||
|
|
||||||
def _run_reset_callbacks(&block); end
|
def _run_reset_callbacks(&block); end
|
||||||
|
|
||||||
|
def attributes(); end
|
||||||
|
|
||||||
|
def attributes=(attributes); end
|
||||||
|
|
||||||
|
def reset(); end
|
||||||
|
|
||||||
|
def set(set_attributes); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class ActiveSupport::CurrentAttributes
|
class ActiveSupport::CurrentAttributes
|
||||||
@ -553,9 +561,17 @@ class ActiveSupport::CurrentAttributes
|
|||||||
|
|
||||||
def self.before_reset(&block); end
|
def self.before_reset(&block); end
|
||||||
|
|
||||||
|
def self.clear_all(); end
|
||||||
|
|
||||||
def self.instance(); end
|
def self.instance(); end
|
||||||
|
|
||||||
|
def self.reset(*args, &block); end
|
||||||
|
|
||||||
|
def self.reset_all(); end
|
||||||
|
|
||||||
def self.resets(&block); end
|
def self.resets(&block); end
|
||||||
|
|
||||||
|
def self.set(*args, &block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Dependencies
|
module ActiveSupport::Dependencies
|
||||||
@ -2912,12 +2928,99 @@ end
|
|||||||
class Bootsnap::CompileCache::Error
|
class Bootsnap::CompileCache::Error
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::ISeq
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::ISeq::InstructionSequenceMixin
|
||||||
|
def compile_option=(hash); end
|
||||||
|
|
||||||
|
def load_iseq(path); end
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::ISeq::InstructionSequenceMixin
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::ISeq
|
||||||
|
def self.cache_dir(); end
|
||||||
|
|
||||||
|
def self.cache_dir=(cache_dir); end
|
||||||
|
|
||||||
|
def self.compile_option_updated(); end
|
||||||
|
|
||||||
|
def self.fetch(path, cache_dir: T.unsafe(nil)); end
|
||||||
|
|
||||||
|
def self.input_to_output(_data, _kwargs); end
|
||||||
|
|
||||||
|
def self.input_to_storage(_, path); end
|
||||||
|
|
||||||
|
def self.install!(cache_dir); end
|
||||||
|
|
||||||
|
def self.precompile(path, cache_dir: T.unsafe(nil)); end
|
||||||
|
|
||||||
|
def self.storage_to_output(binary, _args); end
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::Native
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::Native
|
||||||
|
def self.compile_option_crc32=(compile_option_crc32); end
|
||||||
|
|
||||||
|
def self.coverage_running?(); end
|
||||||
|
|
||||||
|
def self.fetch(_, _1, _2, _3); end
|
||||||
|
|
||||||
|
def self.precompile(_, _1, _2); end
|
||||||
|
end
|
||||||
|
|
||||||
class Bootsnap::CompileCache::PermissionError
|
class Bootsnap::CompileCache::PermissionError
|
||||||
end
|
end
|
||||||
|
|
||||||
class Bootsnap::CompileCache::PermissionError
|
class Bootsnap::CompileCache::PermissionError
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class Bootsnap::CompileCache::Uncompilable
|
||||||
|
end
|
||||||
|
|
||||||
|
class Bootsnap::CompileCache::Uncompilable
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::YAML
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::YAML::Patch
|
||||||
|
def load_file(path, *args); end
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::YAML::Patch
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::CompileCache::YAML
|
||||||
|
def self.cache_dir(); end
|
||||||
|
|
||||||
|
def self.cache_dir=(cache_dir); end
|
||||||
|
|
||||||
|
def self.init!(); end
|
||||||
|
|
||||||
|
def self.input_to_output(data, kwargs); end
|
||||||
|
|
||||||
|
def self.input_to_storage(contents, _); end
|
||||||
|
|
||||||
|
def self.install!(cache_dir); end
|
||||||
|
|
||||||
|
def self.msgpack_factory(); end
|
||||||
|
|
||||||
|
def self.msgpack_factory=(msgpack_factory); end
|
||||||
|
|
||||||
|
def self.precompile(path, cache_dir: T.unsafe(nil)); end
|
||||||
|
|
||||||
|
def self.storage_to_output(data, kwargs); end
|
||||||
|
|
||||||
|
def self.supported_options(); end
|
||||||
|
|
||||||
|
def self.supported_options=(supported_options); end
|
||||||
|
end
|
||||||
|
|
||||||
module Bootsnap::CompileCache
|
module Bootsnap::CompileCache
|
||||||
def self.permission_error(path); end
|
def self.permission_error(path); end
|
||||||
|
|
||||||
@ -3048,6 +3151,13 @@ module Bootsnap::LoadPathCache::ChangeObserver
|
|||||||
def self.register(observer, arr); end
|
def self.register(observer, arr); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module Bootsnap::LoadPathCache::CoreExt
|
||||||
|
end
|
||||||
|
|
||||||
|
module Bootsnap::LoadPathCache::CoreExt
|
||||||
|
def self.make_load_error(path); end
|
||||||
|
end
|
||||||
|
|
||||||
class Bootsnap::LoadPathCache::FallbackScan
|
class Bootsnap::LoadPathCache::FallbackScan
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -5672,6 +5782,15 @@ module Cask::Caskroom
|
|||||||
extend ::T::Private::Methods::SingletonMethodHooks
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class Cask::Cmd::AbstractCommand
|
||||||
|
include ::Homebrew::Search::Extension
|
||||||
|
end
|
||||||
|
|
||||||
|
class Cask::Cmd::AbstractCommand
|
||||||
|
extend ::T::Private::Methods::MethodHooks
|
||||||
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
|
end
|
||||||
|
|
||||||
class Cask::Config
|
class Cask::Config
|
||||||
def appdir(); end
|
def appdir(); end
|
||||||
|
|
||||||
@ -6212,90 +6331,6 @@ module CodeRay
|
|||||||
def self.scanner(lang, options=T.unsafe(nil), &block); end
|
def self.scanner(lang, options=T.unsafe(nil), &block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module Codecov
|
|
||||||
VERSION = ::T.let(nil, ::T.untyped)
|
|
||||||
end
|
|
||||||
|
|
||||||
module Codecov::Configuration
|
|
||||||
def pass_ci_if_error(); end
|
|
||||||
|
|
||||||
def pass_ci_if_error=(pass_ci_if_error); end
|
|
||||||
end
|
|
||||||
|
|
||||||
module Codecov::Configuration
|
|
||||||
end
|
|
||||||
|
|
||||||
module Codecov::SimpleCov
|
|
||||||
end
|
|
||||||
|
|
||||||
class Codecov::SimpleCov::Formatter
|
|
||||||
def format(report); end
|
|
||||||
RESULT_FILE_NAME = ::T.let(nil, ::T.untyped)
|
|
||||||
end
|
|
||||||
|
|
||||||
class Codecov::SimpleCov::Formatter
|
|
||||||
end
|
|
||||||
|
|
||||||
module Codecov::SimpleCov
|
|
||||||
end
|
|
||||||
|
|
||||||
class Codecov::Uploader
|
|
||||||
APPVEYOR = ::T.let(nil, ::T.untyped)
|
|
||||||
AZUREPIPELINES = ::T.let(nil, ::T.untyped)
|
|
||||||
BITBUCKET = ::T.let(nil, ::T.untyped)
|
|
||||||
BITRISE = ::T.let(nil, ::T.untyped)
|
|
||||||
BUILDKITE = ::T.let(nil, ::T.untyped)
|
|
||||||
CIRCLE = ::T.let(nil, ::T.untyped)
|
|
||||||
CODEBUILD = ::T.let(nil, ::T.untyped)
|
|
||||||
CODESHIP = ::T.let(nil, ::T.untyped)
|
|
||||||
DRONEIO = ::T.let(nil, ::T.untyped)
|
|
||||||
GITHUB = ::T.let(nil, ::T.untyped)
|
|
||||||
GITLAB = ::T.let(nil, ::T.untyped)
|
|
||||||
HEROKU = ::T.let(nil, ::T.untyped)
|
|
||||||
JENKINS = ::T.let(nil, ::T.untyped)
|
|
||||||
RECOGNIZED_CIS = ::T.let(nil, ::T.untyped)
|
|
||||||
SEMAPHORE = ::T.let(nil, ::T.untyped)
|
|
||||||
SHIPPABLE = ::T.let(nil, ::T.untyped)
|
|
||||||
SOLANO = ::T.let(nil, ::T.untyped)
|
|
||||||
TEAMCITY = ::T.let(nil, ::T.untyped)
|
|
||||||
TRAVIS = ::T.let(nil, ::T.untyped)
|
|
||||||
WERCKER = ::T.let(nil, ::T.untyped)
|
|
||||||
end
|
|
||||||
|
|
||||||
class Codecov::Uploader
|
|
||||||
def self.black(str); end
|
|
||||||
|
|
||||||
def self.build_params(ci); end
|
|
||||||
|
|
||||||
def self.detect_ci(); end
|
|
||||||
|
|
||||||
def self.display_header(); end
|
|
||||||
|
|
||||||
def self.green(str); end
|
|
||||||
|
|
||||||
def self.gzip_report(report); end
|
|
||||||
|
|
||||||
def self.handle_report_response(report); end
|
|
||||||
|
|
||||||
def self.net_blockers(switch); end
|
|
||||||
|
|
||||||
def self.red(str); end
|
|
||||||
|
|
||||||
def self.retry_request(req, https); end
|
|
||||||
|
|
||||||
def self.upload(report, disable_net_blockers=T.unsafe(nil)); end
|
|
||||||
|
|
||||||
def self.upload_to_codecov(ci, report); end
|
|
||||||
|
|
||||||
def self.upload_to_v2(url, report, query, query_without_token); end
|
|
||||||
|
|
||||||
def self.upload_to_v4(url, report, query, query_without_token); end
|
|
||||||
end
|
|
||||||
|
|
||||||
module Codecov
|
|
||||||
extend ::Codecov::Configuration
|
|
||||||
end
|
|
||||||
|
|
||||||
class CompilerSelector::Compiler
|
class CompilerSelector::Compiler
|
||||||
def self.[](*_); end
|
def self.[](*_); end
|
||||||
|
|
||||||
@ -7129,8 +7164,6 @@ end
|
|||||||
class Errno::EBADRPC
|
class Errno::EBADRPC
|
||||||
end
|
end
|
||||||
|
|
||||||
Errno::ECAPMODE = Errno::NOERROR
|
|
||||||
|
|
||||||
Errno::EDEADLOCK = Errno::NOERROR
|
Errno::EDEADLOCK = Errno::NOERROR
|
||||||
|
|
||||||
class Errno::EDEVERR
|
class Errno::EDEVERR
|
||||||
@ -7151,13 +7184,6 @@ end
|
|||||||
|
|
||||||
Errno::EIPSEC = Errno::NOERROR
|
Errno::EIPSEC = Errno::NOERROR
|
||||||
|
|
||||||
class Errno::ELAST
|
|
||||||
Errno = ::T.let(nil, ::T.untyped)
|
|
||||||
end
|
|
||||||
|
|
||||||
class Errno::ELAST
|
|
||||||
end
|
|
||||||
|
|
||||||
class Errno::ENEEDAUTH
|
class Errno::ENEEDAUTH
|
||||||
Errno = ::T.let(nil, ::T.untyped)
|
Errno = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
@ -7179,8 +7205,6 @@ end
|
|||||||
class Errno::ENOPOLICY
|
class Errno::ENOPOLICY
|
||||||
end
|
end
|
||||||
|
|
||||||
Errno::ENOTCAPABLE = Errno::NOERROR
|
|
||||||
|
|
||||||
class Errno::ENOTSUP
|
class Errno::ENOTSUP
|
||||||
Errno = ::T.let(nil, ::T.untyped)
|
Errno = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
@ -7223,7 +7247,12 @@ end
|
|||||||
class Errno::EPWROFF
|
class Errno::EPWROFF
|
||||||
end
|
end
|
||||||
|
|
||||||
Errno::EQFULL = Errno::ELAST
|
class Errno::EQFULL
|
||||||
|
Errno = ::T.let(nil, ::T.untyped)
|
||||||
|
end
|
||||||
|
|
||||||
|
class Errno::EQFULL
|
||||||
|
end
|
||||||
|
|
||||||
class Errno::ERPCMISMATCH
|
class Errno::ERPCMISMATCH
|
||||||
Errno = ::T.let(nil, ::T.untyped)
|
Errno = ::T.let(nil, ::T.untyped)
|
||||||
@ -8423,6 +8452,14 @@ module Homebrew::Livecheck
|
|||||||
extend ::T::Private::Methods::SingletonMethodHooks
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module Homebrew::MissingFormula
|
||||||
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
|
end
|
||||||
|
|
||||||
|
module Homebrew::Search
|
||||||
|
include ::Homebrew::Search::Extension
|
||||||
|
end
|
||||||
|
|
||||||
module Homebrew::Settings
|
module Homebrew::Settings
|
||||||
extend ::T::Private::Methods::MethodHooks
|
extend ::T::Private::Methods::MethodHooks
|
||||||
extend ::T::Private::Methods::SingletonMethodHooks
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
@ -9773,11 +9810,13 @@ module Kernel
|
|||||||
extend ::T::Private::Methods::SingletonMethodHooks
|
extend ::T::Private::Methods::SingletonMethodHooks
|
||||||
def self.at_exit(); end
|
def self.at_exit(); end
|
||||||
|
|
||||||
|
def self.autoload(_, _1); end
|
||||||
|
|
||||||
def self.fork(); end
|
def self.fork(); end
|
||||||
|
|
||||||
def self.gem(dep, *reqs); end
|
def self.gem(dep, *reqs); end
|
||||||
|
|
||||||
def self.load(*_); end
|
def self.load(path, wrap=T.unsafe(nil)); end
|
||||||
|
|
||||||
def self.require(path); end
|
def self.require(path); end
|
||||||
end
|
end
|
||||||
@ -12087,6 +12126,8 @@ class Module
|
|||||||
|
|
||||||
def anonymous?(); end
|
def anonymous?(); end
|
||||||
|
|
||||||
|
def autoload_without_bootsnap(_, _1); end
|
||||||
|
|
||||||
def context(*a, &b); end
|
def context(*a, &b); end
|
||||||
|
|
||||||
def deprecate(*method_names); end
|
def deprecate(*method_names); end
|
||||||
@ -12428,8 +12469,6 @@ end
|
|||||||
class Net::HTTPAlreadyReported
|
class Net::HTTPAlreadyReported
|
||||||
end
|
end
|
||||||
|
|
||||||
Net::HTTPClientError::EXCEPTION_TYPE = Net::HTTPServerException
|
|
||||||
|
|
||||||
Net::HTTPClientErrorCode = Net::HTTPClientError
|
Net::HTTPClientErrorCode = Net::HTTPClientError
|
||||||
|
|
||||||
class Net::HTTPEarlyHints
|
class Net::HTTPEarlyHints
|
||||||
@ -12491,8 +12530,6 @@ end
|
|||||||
class Net::HTTPRangeNotSatisfiable
|
class Net::HTTPRangeNotSatisfiable
|
||||||
end
|
end
|
||||||
|
|
||||||
Net::HTTPRedirection::EXCEPTION_TYPE = Net::HTTPRetriableError
|
|
||||||
|
|
||||||
Net::HTTPRedirectionCode = Net::HTTPRedirection
|
Net::HTTPRedirectionCode = Net::HTTPRedirection
|
||||||
|
|
||||||
Net::HTTPRequestURITooLarge = Net::HTTPURITooLong
|
Net::HTTPRequestURITooLarge = Net::HTTPURITooLong
|
||||||
@ -12501,8 +12538,6 @@ Net::HTTPResponceReceiver = Net::HTTPResponse
|
|||||||
|
|
||||||
Net::HTTPRetriableCode = Net::HTTPRedirection
|
Net::HTTPRetriableCode = Net::HTTPRedirection
|
||||||
|
|
||||||
Net::HTTPServerError::EXCEPTION_TYPE = Net::HTTPFatalError
|
|
||||||
|
|
||||||
Net::HTTPServerErrorCode = Net::HTTPServerError
|
Net::HTTPServerErrorCode = Net::HTTPServerError
|
||||||
|
|
||||||
Net::HTTPSession = Net::HTTP
|
Net::HTTPSession = Net::HTTP
|
||||||
@ -12679,6 +12714,7 @@ class Object
|
|||||||
def to_query(key); end
|
def to_query(key); end
|
||||||
|
|
||||||
def to_yaml(options=T.unsafe(nil)); end
|
def to_yaml(options=T.unsafe(nil)); end
|
||||||
|
APPLE_GEM_HOME = ::T.let(nil, ::T.untyped)
|
||||||
ARGF = ::T.let(nil, ::T.untyped)
|
ARGF = ::T.let(nil, ::T.untyped)
|
||||||
ARGV = ::T.let(nil, ::T.untyped)
|
ARGV = ::T.let(nil, ::T.untyped)
|
||||||
BUG_REPORTS_URL = ::T.let(nil, ::T.untyped)
|
BUG_REPORTS_URL = ::T.let(nil, ::T.untyped)
|
||||||
@ -12744,6 +12780,8 @@ class Object
|
|||||||
RUBY_DESCRIPTION = ::T.let(nil, ::T.untyped)
|
RUBY_DESCRIPTION = ::T.let(nil, ::T.untyped)
|
||||||
RUBY_ENGINE = ::T.let(nil, ::T.untyped)
|
RUBY_ENGINE = ::T.let(nil, ::T.untyped)
|
||||||
RUBY_ENGINE_VERSION = ::T.let(nil, ::T.untyped)
|
RUBY_ENGINE_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
|
RUBY_FRAMEWORK = ::T.let(nil, ::T.untyped)
|
||||||
|
RUBY_FRAMEWORK_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
RUBY_PATCHLEVEL = ::T.let(nil, ::T.untyped)
|
RUBY_PATCHLEVEL = ::T.let(nil, ::T.untyped)
|
||||||
RUBY_PATH = ::T.let(nil, ::T.untyped)
|
RUBY_PATH = ::T.let(nil, ::T.untyped)
|
||||||
RUBY_PLATFORM = ::T.let(nil, ::T.untyped)
|
RUBY_PLATFORM = ::T.let(nil, ::T.untyped)
|
||||||
@ -12796,11 +12834,7 @@ class OpenSSL::KDF::KDFError
|
|||||||
end
|
end
|
||||||
|
|
||||||
module OpenSSL::KDF
|
module OpenSSL::KDF
|
||||||
def self.hkdf(*_); end
|
|
||||||
|
|
||||||
def self.pbkdf2_hmac(*_); end
|
def self.pbkdf2_hmac(*_); end
|
||||||
|
|
||||||
def self.scrypt(*_); end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
class OpenSSL::OCSP::Request
|
class OpenSSL::OCSP::Request
|
||||||
@ -12809,29 +12843,20 @@ end
|
|||||||
|
|
||||||
OpenSSL::PKCS7::Signer = OpenSSL::PKCS7::SignerInfo
|
OpenSSL::PKCS7::Signer = OpenSSL::PKCS7::SignerInfo
|
||||||
|
|
||||||
class OpenSSL::PKey::EC
|
|
||||||
EXPLICIT_CURVE = ::T.let(nil, ::T.untyped)
|
|
||||||
end
|
|
||||||
|
|
||||||
class OpenSSL::PKey::EC::Point
|
class OpenSSL::PKey::EC::Point
|
||||||
def to_octet_string(_); end
|
def to_octet_string(_); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module OpenSSL::SSL
|
module OpenSSL::SSL
|
||||||
OP_ALLOW_NO_DHE_KEX = ::T.let(nil, ::T.untyped)
|
|
||||||
OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION = ::T.let(nil, ::T.untyped)
|
OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION = ::T.let(nil, ::T.untyped)
|
||||||
OP_CRYPTOPRO_TLSEXT_BUG = ::T.let(nil, ::T.untyped)
|
OP_CRYPTOPRO_TLSEXT_BUG = ::T.let(nil, ::T.untyped)
|
||||||
OP_LEGACY_SERVER_CONNECT = ::T.let(nil, ::T.untyped)
|
OP_LEGACY_SERVER_CONNECT = ::T.let(nil, ::T.untyped)
|
||||||
OP_NO_ENCRYPT_THEN_MAC = ::T.let(nil, ::T.untyped)
|
|
||||||
OP_NO_RENEGOTIATION = ::T.let(nil, ::T.untyped)
|
|
||||||
OP_NO_TLSv1_3 = ::T.let(nil, ::T.untyped)
|
|
||||||
OP_SAFARI_ECDHE_ECDSA_BUG = ::T.let(nil, ::T.untyped)
|
OP_SAFARI_ECDHE_ECDSA_BUG = ::T.let(nil, ::T.untyped)
|
||||||
OP_TLSEXT_PADDING = ::T.let(nil, ::T.untyped)
|
OP_TLSEXT_PADDING = ::T.let(nil, ::T.untyped)
|
||||||
SSL2_VERSION = ::T.let(nil, ::T.untyped)
|
SSL2_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
SSL3_VERSION = ::T.let(nil, ::T.untyped)
|
SSL3_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
TLS1_1_VERSION = ::T.let(nil, ::T.untyped)
|
TLS1_1_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
TLS1_2_VERSION = ::T.let(nil, ::T.untyped)
|
TLS1_2_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
TLS1_3_VERSION = ::T.let(nil, ::T.untyped)
|
|
||||||
TLS1_VERSION = ::T.let(nil, ::T.untyped)
|
TLS1_VERSION = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -17243,6 +17268,7 @@ module Psych
|
|||||||
end
|
end
|
||||||
|
|
||||||
module Psych
|
module Psych
|
||||||
|
extend ::Bootsnap::CompileCache::YAML::Patch
|
||||||
def self.add_builtin_type(type_tag, &block); end
|
def self.add_builtin_type(type_tag, &block); end
|
||||||
|
|
||||||
def self.add_domain_type(domain, type_tag, &block); end
|
def self.add_domain_type(domain, type_tag, &block); end
|
||||||
@ -28009,6 +28035,10 @@ class RubyVM::AbstractSyntaxTree::Node
|
|||||||
def pretty_print_children(q, names=T.unsafe(nil)); end
|
def pretty_print_children(q, names=T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class RubyVM::InstructionSequence
|
||||||
|
extend ::Bootsnap::CompileCache::ISeq::InstructionSequenceMixin
|
||||||
|
end
|
||||||
|
|
||||||
module RubyVM::MJIT
|
module RubyVM::MJIT
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -28379,11 +28409,14 @@ end
|
|||||||
module SimpleCov::Formatter
|
module SimpleCov::Formatter
|
||||||
end
|
end
|
||||||
|
|
||||||
class SimpleCov::Formatter::Codecov
|
class SimpleCov::Formatter::CoberturaFormatter
|
||||||
def format(result, disable_net_blockers=T.unsafe(nil)); end
|
def format(result); end
|
||||||
|
DTD_URL = ::T.let(nil, ::T.untyped)
|
||||||
|
RESULT_FILE_NAME = ::T.let(nil, ::T.untyped)
|
||||||
|
VERSION = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
|
|
||||||
class SimpleCov::Formatter::Codecov
|
class SimpleCov::Formatter::CoberturaFormatter
|
||||||
end
|
end
|
||||||
|
|
||||||
class SimpleCov::Formatter::HTMLFormatter
|
class SimpleCov::Formatter::HTMLFormatter
|
||||||
@ -28898,6 +28931,7 @@ class Socket
|
|||||||
IPV6_PATHMTU = ::T.let(nil, ::T.untyped)
|
IPV6_PATHMTU = ::T.let(nil, ::T.untyped)
|
||||||
IPV6_RECVPATHMTU = ::T.let(nil, ::T.untyped)
|
IPV6_RECVPATHMTU = ::T.let(nil, ::T.untyped)
|
||||||
IPV6_USE_MIN_MTU = ::T.let(nil, ::T.untyped)
|
IPV6_USE_MIN_MTU = ::T.let(nil, ::T.untyped)
|
||||||
|
IP_DONTFRAG = ::T.let(nil, ::T.untyped)
|
||||||
IP_PORTRANGE = ::T.let(nil, ::T.untyped)
|
IP_PORTRANGE = ::T.let(nil, ::T.untyped)
|
||||||
IP_RECVDSTADDR = ::T.let(nil, ::T.untyped)
|
IP_RECVDSTADDR = ::T.let(nil, ::T.untyped)
|
||||||
IP_RECVIF = ::T.let(nil, ::T.untyped)
|
IP_RECVIF = ::T.let(nil, ::T.untyped)
|
||||||
@ -28989,6 +29023,7 @@ module Socket::Constants
|
|||||||
IPV6_PATHMTU = ::T.let(nil, ::T.untyped)
|
IPV6_PATHMTU = ::T.let(nil, ::T.untyped)
|
||||||
IPV6_RECVPATHMTU = ::T.let(nil, ::T.untyped)
|
IPV6_RECVPATHMTU = ::T.let(nil, ::T.untyped)
|
||||||
IPV6_USE_MIN_MTU = ::T.let(nil, ::T.untyped)
|
IPV6_USE_MIN_MTU = ::T.let(nil, ::T.untyped)
|
||||||
|
IP_DONTFRAG = ::T.let(nil, ::T.untyped)
|
||||||
IP_PORTRANGE = ::T.let(nil, ::T.untyped)
|
IP_PORTRANGE = ::T.let(nil, ::T.untyped)
|
||||||
IP_RECVDSTADDR = ::T.let(nil, ::T.untyped)
|
IP_RECVDSTADDR = ::T.let(nil, ::T.untyped)
|
||||||
IP_RECVIF = ::T.let(nil, ::T.untyped)
|
IP_RECVIF = ::T.let(nil, ::T.untyped)
|
||||||
|
|||||||
@ -3,24 +3,20 @@
|
|||||||
|
|
||||||
if ENV["HOMEBREW_TESTS_COVERAGE"]
|
if ENV["HOMEBREW_TESTS_COVERAGE"]
|
||||||
require "simplecov"
|
require "simplecov"
|
||||||
|
require "simplecov-cobertura"
|
||||||
|
|
||||||
formatters = [SimpleCov::Formatter::HTMLFormatter]
|
formatters = [
|
||||||
if ENV["HOMEBREW_CODECOV_TOKEN"] && RUBY_PLATFORM[/darwin/]
|
SimpleCov::Formatter::HTMLFormatter,
|
||||||
require "codecov"
|
SimpleCov::Formatter::CoberturaFormatter,
|
||||||
|
]
|
||||||
formatters << SimpleCov::Formatter::Codecov
|
|
||||||
|
|
||||||
if ENV["TEST_ENV_NUMBER"]
|
|
||||||
SimpleCov.at_exit do
|
|
||||||
result = SimpleCov.result
|
|
||||||
result.format! if ParallelTests.number_of_running_processes <= 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
ENV["CODECOV_TOKEN"] = ENV["HOMEBREW_CODECOV_TOKEN"]
|
|
||||||
end
|
|
||||||
|
|
||||||
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(formatters)
|
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(formatters)
|
||||||
|
|
||||||
|
if RUBY_PLATFORM[/darwin/] && ENV["TEST_ENV_NUMBER"]
|
||||||
|
SimpleCov.at_exit do
|
||||||
|
result = SimpleCov.result
|
||||||
|
result.format! if ParallelTests.number_of_running_processes <= 1
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
require_relative "../warnings"
|
require_relative "../warnings"
|
||||||
|
|||||||
@ -24,7 +24,6 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/docile-1.3.5/lib"
|
|||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-html-0.12.3/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-html-0.12.3/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov_json_formatter-0.1.2/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov_json_formatter-0.1.2/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-0.21.2/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-0.21.2/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/codecov-0.5.1/lib"
|
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/coderay-1.1.3/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/coderay-1.1.3/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/colorize-0.8.1/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/colorize-0.8.1/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/highline-2.0.3/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/highline-2.0.3/lib"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user