Timing type error with circleci after updating bundle

I don’t know if it is related but this happened after updating the bundle version. It puts as an example spec/requests/posts_spec.rb but if I delete that file then goes to the one coming right after.

What could be the issue?

Error autodetecting timing type, falling back to weighting by name. Autodetect no matching filename or classname.  If file names are used, double check paths for absolute vs relative.
Example input file: "spec/requests/posts_spec.rb"
Example file from timings: ""
DEPRECATION WARNING: Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION is deprecated! Use Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION instead. (called from block (2 levels) in require at /home/circleci/.rubygems/gems/bundler-2.3.8/lib/bundler/runtime.rb:60)
DEPRECATION WARNING: Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION is deprecated! Use Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION instead. (called from block (2 levels) in require at /home/circleci/.rubygems/gems/bundler-2.3.8/lib/bundler/runtime.rb:60)
No examples found.

Exited with code exit status 1
CircleCI received exit code 1

config file

version: 2.1

services:       
orbs:
  ruby: circleci/ruby@1.0

jobs:
  build:
    docker:
      - image: cimg/ruby:2.6.6-node
    steps:
      - checkout
      - ruby/install-deps

  test:
    parallelism: 3
    docker:
      - image: cimg/ruby:2.6.6-node
        environment:
          DATABASE_URL: postgres://myapp-user@127.0.0.1/myapp-test
          PUBLISHABLE_KEY: 'pk_test_t6NYOy0tevDzxRtvhhdUSHiU'
          STRIPE_API_KEY: 'sk_test_dGxydqv9W78QTuvDVFzCK8hl'

      - image: circleci/postgres:9.5-alpine
        environment:
          POSTGRES_DB: myapp-test
          POSTGRES_USER: myapp-user

    environment:
      BUNDLE_JOBS: "3"
      BUNDLE_RETRY: "3"
      PGHOST: 127.0.0.1
      RAILS_ENV: test
      PUBLISHABLE_KEY: 'pk_test_t6NYOy0tevDzxRtvhhdUSHiU'
      STRIPE_API_KEY: 'sk_test_dGxydqv9W78QTuvDVFzCK8hl'
    steps:
      - checkout
      - ruby/install-deps
      # Database setup
      - run: bundle exec rake db:create
      - run: bundle exec rake db:schema:load

      # Run rspec in parallel
      - ruby/rspec-test

workflows:
  version: 2
  build_and_test:
    jobs:
      - build
      - test:
          requires:
            - build