Net::ReadTimeout error in Ruby specs

Hello, I’m just starting out learning to code so I apologise if my question is a simple one, it’s doing my head in. I have 2 specs that are failing in travis-ci which are passing in my test environment. The error I’m getting is:

1) Users can create new tickets with multiple attachment
 Failure/Error: visit project_path(project)
     Net::ReadTimeout:
     Net::ReadTimeout
 # ./spec/features/creating_tickets_spec.rb:12:in `block (2 levels) in <top (required)>'
  2) Users can delete unwanted tags from a ticket successfully
 Failure/Error: visit project_ticket_path(project, ticket)
 
 Net::ReadTimeout:
   Net::ReadTimeout
 # ./spec/features/deleting_tags_spec.rb:16:in `block (2 levels) in <top (required)>'
Finished in 2 minutes 17.9 seconds (files took 9.62 seconds to load)
131 examples, 2 failures
Failed examples:
rspec ./spec/features/creating_tickets_spec.rb:45 # Users can create new tickets with multiple attachment
rspec ./spec/features/deleting_tags_spec.rb:15 # Users can delete unwanted tags from a ticket successfully
The command "bundle exec rspec" exited with 1.
Done. Your build exited with 1.

the visit xxx_path(xxx) line of code that appears to be failing exists in multiple specs in my project so I’m kind of at a lost as to what is going wrong. Please can you help me fix this issue so I can finally get travis-ci working for my project. Thankyou!!