diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-04-25 17:22:44 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-04-25 21:33:17 -0400 |
commit | 652c15b585bac393b5c403a03355040eef51789c (patch) | |
tree | 535dc4ee314d2d3b865b8c7e1345cb45651071c5 | |
parent | 3875930793bf4e0274aabc4db7e3a31259d7297b (diff) | |
download | gitlab-ce-652c15b585bac393b5c403a03355040eef51789c.tar.gz |
Don't use capybara-screenshot in CI environmentsrs-capybara-screenshot
-rw-r--r-- | features/support/capybara.rb | 8 | ||||
-rw-r--r-- | spec/support/capybara.rb | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/features/support/capybara.rb b/features/support/capybara.rb index aaec9a6ece7..31dbf0feb2f 100644 --- a/features/support/capybara.rb +++ b/features/support/capybara.rb @@ -16,7 +16,9 @@ end Capybara.default_wait_time = timeout Capybara.ignore_hidden_elements = false -require 'capybara-screenshot/spinach' +unless ENV['CI'] || ENV['CI_SERVER'] + require 'capybara-screenshot/spinach' -# Keep only the screenshots generated from the last failing test suite -Capybara::Screenshot.prune_strategy = :keep_last_run + # Keep only the screenshots generated from the last failing test suite + Capybara::Screenshot.prune_strategy = :keep_last_run +end diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb index ead99abddc8..fed1ab6ee33 100644 --- a/spec/support/capybara.rb +++ b/spec/support/capybara.rb @@ -13,7 +13,9 @@ end Capybara.default_wait_time = timeout Capybara.ignore_hidden_elements = true -require 'capybara-screenshot/rspec' +unless ENV['CI'] || ENV['CI_SERVER'] + require 'capybara-screenshot/rspec' -# Keep only the screenshots generated from the last failing test suite -Capybara::Screenshot.prune_strategy = :keep_last_run + # Keep only the screenshots generated from the last failing test suite + Capybara::Screenshot.prune_strategy = :keep_last_run +end |