[ARVADOS] updated: f31ff926baa478238aa60e0d2efc6d4db70888f8

git at public.curoverse.com git at public.curoverse.com
Tue Feb 10 16:16:22 EST 2015


Summary of changes:
 .../app/views/application/_show_sharing.html.erb   |  9 +++++++
 apps/workbench/config/application.default.yml      |  4 ++--
 apps/workbench/test/integration/jobs_test.rb       | 13 +++++++---
 apps/workbench/test/integration/projects_test.rb   | 28 ++++++++++++++++++++++
 services/api/app/models/database_seeds.rb          |  1 +
 ...206210804_all_users_can_read_anonymous_group.rb | 12 ++++++++++
 services/api/db/structure.sql                      |  4 +++-
 services/api/lib/current_api_client.rb             | 12 ++++++++++
 services/api/test/fixtures/groups.yml              |  5 ++--
 services/api/test/fixtures/links.yml               | 14 +++++++++++
 services/api/test/unit/link_test.rb                |  5 ++++
 11 files changed, 99 insertions(+), 8 deletions(-)
 create mode 100644 services/api/db/migrate/20150206210804_all_users_can_read_anonymous_group.rb

       via  f31ff926baa478238aa60e0d2efc6d4db70888f8 (commit)
       via  b8ca977e91b399067c8d6d1456809c94b7a7d0eb (commit)
       via  0215bf7b8c61d59462a476d850af999105856177 (commit)
       via  34d6dc1f56b59b7c7cc3e6dc7d54053149c49bc6 (commit)
       via  045bce46ede1995ed17747c48611f22c478cc82d (commit)
       via  d9e2de2e142fe1a79bd83064d8d9135ba44fd807 (commit)
       via  710b03568da92458279db56608cba84cb5151847 (commit)
      from  f74b087ce5ecdc2318e11d276e0d2b7ebefd13f3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit f31ff926baa478238aa60e0d2efc6d4db70888f8
Author: Radhika Chippada <radhika at curoverse.com>
Date:   Tue Feb 10 16:04:33 2015 -0500

    5183: retry if the radio button is not selected.

diff --git a/apps/workbench/test/integration/jobs_test.rb b/apps/workbench/test/integration/jobs_test.rb
index 047db87..48fb4ca 100644
--- a/apps/workbench/test/integration/jobs_test.rb
+++ b/apps/workbench/test/integration/jobs_test.rb
@@ -97,9 +97,16 @@ class JobsTest < ActionDispatch::IntegrationTest
       within('.modal-dialog') do
         assert_selector 'a,button', text: 'Cancel'
         if use_latest
-          page.choose("job_script_version_#{job['supplied_script_version']}")
-          latest = all(:xpath, '//input[@id="job_script_version_master"]')[0]
-          assert_equal true, latest.selected?
+          (0..4).each do |i|
+            page.choose("job_script_version_#{job['supplied_script_version']}")
+            latest = all(:xpath, '//input[@id="job_script_version_master"]')[0]
+            if !latest.selected?
+              sleep 0.1
+            else
+              break
+            end
+          end
+          assert_equal true, all(:xpath, '//input[@id="job_script_version_master"]')[0].selected?
         end
         click_on "Run now"
       end

commit b8ca977e91b399067c8d6d1456809c94b7a7d0eb
Merge: f74b087 0215bf7
Author: Radhika Chippada <radhika at curoverse.com>
Date:   Tue Feb 10 15:51:27 2015 -0500

    Merge branch 'master' into 5183-fix-job-rerun-test


-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list