1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Disables tests with race conditions affecting CI

GH#1546 - The new build system on Travis CI is erring amongst three
tests. Initial investigating hints that they contain race conditions
in the tests (rather than the code).

We've decided to disable the tests whilst we look to resolve since it is
devaluing the CI for the rest of the project.
This commit is contained in:
Paul Thornthwaite 2013-02-05 11:19:02 +00:00
parent 73e823f56e
commit 190d86dba6
3 changed files with 7 additions and 0 deletions

View file

@ -1,4 +1,6 @@
Shindo.tests("AWS::RDS | server", ['aws', 'rds']) do
# Disabled due to https://github.com/fog/fog/1546
pending
model_tests(Fog::AWS[:rds].servers, rds_default_server_params) do
# We'll need this later; create it early to avoid waiting

View file

@ -1,4 +1,7 @@
Shindo.tests('AWS::RDS | instance requests', ['aws', 'rds']) do
# Disabled due to https://github.com/fog/fog/1546
pending
# random_differentiator
# Useful when rapidly re-running tests, so we don't have to wait
# serveral minutes for deleted servers to disappear

View file

@ -1,4 +1,6 @@
Shindo.tests("Fog::Compute[:hp] | security_group", ['hp']) do
# Disabled due to https://github.com/fog/fog/1546
pending
model_tests(Fog::Compute[:hp].security_groups, {:name => 'foggroupname', :description => 'foggroupdescription'}, true)