Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Nov 14, 2023
1 parent ac360a9 commit 1ff0218
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ commands:
- restore_cache:
name: Restoring Gem Cache
keys:
- &cache-key gem-cache-v5-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}-<< parameters.ruby-image >>
- gem-cache-v5-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}
- gem-cache-v5-
- &cache-key gem-cache-v4-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}-<< parameters.ruby-image >>
- gem-cache-v4-{{ checksum "<< parameters.path >>/<< parameters.gemspec-file >>" }}
- gem-cache-v4-
- run:
name: Install dependencies
command: |
Expand Down
2 changes: 1 addition & 1 deletion apis/influxdb-client-apis.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'

spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'minitest', '5.15.0'
spec.add_development_dependency 'minitest-reporters', '~> 1.4'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rubocop', '~> 0.66.0'
Expand Down
1 change: 0 additions & 1 deletion test/influxdb/default_api_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'minitest/autorun'
require 'test_helper'
require 'influxdb2/client/default_api'

Expand Down
3 changes: 1 addition & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'minitest/autorun'
require 'simplecov'
SimpleCov.start do
add_filter 'lib/influxdb2/client/models/'
Expand All @@ -33,8 +32,8 @@
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'influxdb-client'

require 'minitest/reporters'
require 'minitest/autorun'
require 'minitest/reporters'
Minitest::Reporters.use! unless ENV['RM_INFO']

require 'webmock/minitest'
Expand Down

0 comments on commit 1ff0218

Please sign in to comment.