X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b193c49962deb916893e1ecb0ab04df8b00e3d7a..96d90c859cede094d83cbaf5409418e9ab0c2c19:/services/api/test/unit/collection_performance_test.rb diff --git a/services/api/test/unit/collection_performance_test.rb b/services/api/test/unit/collection_performance_test.rb index 075b4c542b..57beddbe6d 100644 --- a/services/api/test/unit/collection_performance_test.rb +++ b/services/api/test/unit/collection_performance_test.rb @@ -17,7 +17,7 @@ class CollectionModelPerformanceTest < ActiveSupport::TestCase end # "crrud" == "create read render update delete", not a typo - test "crrud cycle for a collection with a big manifest)" do + slow_test "crrud cycle for a collection with a big manifest)" do bigmanifest = time_block 'make example' do make_manifest(streams: 100, files_per_stream: 100, @@ -33,6 +33,7 @@ class CollectionModelPerformanceTest < ActiveSupport::TestCase c.check_signatures end time_block 'check signatures + save' do + c.instance_eval do @signatures_checked = false end c.save! end c = time_block 'read' do @@ -42,7 +43,7 @@ class CollectionModelPerformanceTest < ActiveSupport::TestCase c.signed_manifest_text end time_block 'sign + render' do - resp = c.as_api_response(nil) + c.as_api_response(nil) end loc = Blob.sign_locator(Digest::MD5.hexdigest('foo') + '+3', api_token: api_token(:active))