Skip to content

Commit

Permalink
Merge pull request fluent#4521 from fluent/test-fix-timecop-version-t…
Browse files Browse the repository at this point in the history
…o-keep-clock-specs

test: fix timecop version to keep clock specs in tests
  • Loading branch information
kenhys committed Jun 6, 2024
2 parents 0d9f3a6 + 57f821b commit ec6f307
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fluentd.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ Gem::Specification.new do |gem|
gem.add_development_dependency("parallel_tests", ["~> 0.15.3"])
gem.add_development_dependency("simplecov", ["~> 0.7"])
gem.add_development_dependency("rr", ["~> 3.0"])
gem.add_development_dependency("timecop", ["~> 0.9"])
# timecop v0.9.9 supports `Process.clock_gettime`. It breaks some tests.
# (https://github.com/fluent/fluentd/pull/4521)
gem.add_development_dependency("timecop", ["< 0.9.9"])
gem.add_development_dependency("test-unit", ["~> 3.3"])
gem.add_development_dependency("test-unit-rr", ["~> 1.0"])
gem.add_development_dependency("oj", [">= 2.14", "< 4"])
Expand Down

0 comments on commit ec6f307

Please sign in to comment.