Disable ALL DigitalOcean tests until fixed

There appears to be a glitch in the test suite such that running
`bundle exec rake travis` passes locally without executing the DO tests
but they are running on Travis itself.

So fed up playing whackamole with failures. They are off until the
broken code is fixed.

See https://github.com/fog/fog/pull/3304

This reverts commit 9b7b8fd490.
This reverts commit fa9254ba8d.
This commit is contained in:
Paul Thornthwaite 2014-12-10 09:35:10 +00:00
parent 9b7b8fd490
commit f08b2e0277
6 changed files with 5 additions and 10 deletions

View File

@ -1,7 +1,5 @@
Shindo.tests("Fog::Compute[:digitalocean] | server model", ['digitalocean', 'compute']) do
pending # See https://github.com/fog/fog/pull/3304
server = fog_test_server
tests('The server model should') do

View File

@ -1,7 +1,5 @@
Shindo.tests('Fog::Compute[:digitalocean] | get_server_details request', ['digitalocean', 'compute']) do
pending # See https://github.com/fog/fog/pull/3304
tests('success') do
test('#get_server_details') do

View File

@ -1,7 +1,5 @@
Shindo.tests('Fog::Compute[:digitalocean] | power_cycle_server request', ['digitalocean', 'compute']) do
pending # See https://github.com/fog/fog/pull/3304
server = fog_test_server
tests('success') do

View File

@ -1,8 +1,6 @@
Shindo.tests('Fog::Compute[:digitalocean] | power on/off/shutdown requests',
['digitalocean', 'compute']) do
pending # See https://github.com/fog/fog/pull/3304
service = Fog::Compute[:digitalocean]
server = fog_test_server

View File

@ -1,7 +1,5 @@
Shindo.tests('Fog::Compute[:digitalocean] | reboot_server request', ['digitalocean', 'compute']) do
pending # See https://github.com/fog/fog/pull/3304
server = fog_test_server
tests('success') do

View File

@ -53,3 +53,8 @@ rescue LoadError
Formatador.display_line("[yellow]Skipping tests for [bold]libvirt[/] [yellow]due to missing `ruby-libvirt` gem.[/]")
Thread.current[:tags] << '-libvirt'
end
# This disables all DigitalOcean tests since the test server code is broken and fails in every case
# See https://github.com/fog/fog/pull/3304
Formatador.display_line("[yellow]Skipping tests for [bold]digitialocean[/] [yellow]due to test helper being broken.[/]")
Thread.current[:tags] << "-digitalocean"