[obs-commits] [openSUSE/open-build-service] 6c8003: [ci] Fix capybara selector
Branch: refs/heads/master Home: https://github.com/openSUSE/open-build-service Commit: 6c8003248ec7f74c65f7bfede778d914ee8afc98 https://github.com/openSUSE/open-build-service/commit/6c8003248ec7f74c65f7bf... Author: Björn Geuken <bgeuken@suse.de> Date: 2017-04-19 (Wed, 19 Apr 2017) Changed paths: M src/api/spec/features/webui/packages_spec.rb Log Message: ----------- [ci] Fix capybara selector ==== Unused parameters passed to Capybara::Queries::SelectorQuery : ["succeeded"] Commit: 377a069a977735c3b466a044c90a638dfc9e3b43 https://github.com/openSUSE/open-build-service/commit/377a069a977735c3b466a0... Author: Björn Geuken <bgeuken@suse.de> Date: 2017-04-19 (Wed, 19 Apr 2017) Changed paths: M src/api/spec/helpers/validation_helper_spec.rb Log Message: ----------- [ci] Update expectation of validation helper spec To spare myself from writing explanations;-) : "WARNING: Using `expect { }.not_to raise_error(SpecificErrorClass)` risks false positives, since literally any other error would cause the expectation to pass, including those raised by Ruby (e.g. NoMethodError, NameError and ArgumentError), meaning the code you are intending to test may not even get reached. Instead consider using `expect {}.not_to raise_error` or `expect { }.to raise_error(DifferentSpecificErrorClass)`. This message can be suppressed by setting: `RSpec::Expectations.configuration.on_potential_false_positives = :nothing`. Called from /vagrant/src/api/spec/helpers/validation_helper_spec.rb:17:in `block (3 levels) in <top (required)>'." Commit: 78789a9f51dccadca570bf4dad54cb8c54d4f626 https://github.com/openSUSE/open-build-service/commit/78789a9f51dccadca570bf... Author: Björn Geuken <bgeuken@suse.de> Date: 2017-04-19 (Wed, 19 Apr 2017) Changed paths: M .rubocop.yml M .rubocop_todo.yml M src/api/app/controllers/attribute_controller.rb M src/api/app/controllers/build_controller.rb M src/api/app/controllers/group_controller.rb M src/api/app/controllers/person_controller.rb M src/api/app/controllers/request_controller.rb M src/api/app/controllers/source_controller.rb M src/api/app/controllers/status_controller.rb M src/api/app/controllers/tag_controller.rb M src/api/app/controllers/trigger_controller.rb M src/api/app/controllers/webui/feeds_controller.rb M src/api/app/controllers/webui/package_controller.rb M src/api/app/controllers/webui/webui_controller.rb M src/api/app/helpers/flag_helper.rb M src/api/app/helpers/maintenance_helper.rb M src/api/app/mixins/has_attributes.rb M src/api/app/models/branch_package.rb M src/api/app/models/bs_request.rb M src/api/app/models/bs_request_action.rb M src/api/app/models/bs_request_action_delete.rb M src/api/app/models/bs_request_action_group.rb M src/api/app/models/bs_request_action_maintenance_incident.rb M src/api/app/models/bs_request_action_maintenance_release.rb M src/api/app/models/bs_request_permission_check.rb M src/api/app/models/channel.rb M src/api/app/models/flag.rb M src/api/app/models/group.rb M src/api/app/models/issue.rb M src/api/app/models/package.rb M src/api/app/models/package_build_status.rb M src/api/app/models/patchinfo.rb M src/api/app/models/product.rb M src/api/app/models/project.rb M src/api/app/models/project/update_from_xml_command.rb M src/api/app/models/role.rb M src/api/app/models/service.rb M src/api/app/models/unregistered_user.rb M src/api/app/models/user.rb M src/api/config/routes.rb M src/api/lib/activexml/node.rb M src/api/lib/activexml/transport.rb M src/api/lib/xpath_engine.rb M src/api/test/test_helper.rb Log Message: ----------- [ci] Enable Style/RaiseArgs rubocop: raise Foo.new -> raise Foo Commit: 09740e14a66e41d7da04a6eee76ecb577c056e24 https://github.com/openSUSE/open-build-service/commit/09740e14a66e41d7da04a6... Author: Björn Geuken <bgeuken@suse.de> Date: 2017-04-20 (Thu, 20 Apr 2017) Changed paths: M .rubocop.yml M .rubocop_todo.yml M src/api/app/controllers/attribute_controller.rb M src/api/app/controllers/build_controller.rb M src/api/app/controllers/group_controller.rb M src/api/app/controllers/person_controller.rb M src/api/app/controllers/request_controller.rb M src/api/app/controllers/source_controller.rb M src/api/app/controllers/status_controller.rb M src/api/app/controllers/tag_controller.rb M src/api/app/controllers/trigger_controller.rb M src/api/app/controllers/webui/feeds_controller.rb M src/api/app/controllers/webui/package_controller.rb M src/api/app/controllers/webui/webui_controller.rb M src/api/app/helpers/flag_helper.rb M src/api/app/helpers/maintenance_helper.rb M src/api/app/mixins/has_attributes.rb M src/api/app/models/branch_package.rb M src/api/app/models/bs_request.rb M src/api/app/models/bs_request_action.rb M src/api/app/models/bs_request_action_delete.rb M src/api/app/models/bs_request_action_group.rb M src/api/app/models/bs_request_action_maintenance_incident.rb M src/api/app/models/bs_request_action_maintenance_release.rb M src/api/app/models/bs_request_permission_check.rb M src/api/app/models/channel.rb M src/api/app/models/flag.rb M src/api/app/models/group.rb M src/api/app/models/issue.rb M src/api/app/models/package.rb M src/api/app/models/package_build_status.rb M src/api/app/models/patchinfo.rb M src/api/app/models/product.rb M src/api/app/models/project.rb M src/api/app/models/project/update_from_xml_command.rb M src/api/app/models/role.rb M src/api/app/models/service.rb M src/api/app/models/unregistered_user.rb M src/api/app/models/user.rb M src/api/config/routes.rb M src/api/lib/activexml/node.rb M src/api/lib/activexml/transport.rb M src/api/lib/xpath_engine.rb M src/api/spec/features/webui/packages_spec.rb M src/api/spec/helpers/validation_helper_spec.rb M src/api/test/test_helper.rb Log Message: ----------- Merge pull request #3006 from bgeuken/fix_travis_warnings Fix travis warnings Compare: https://github.com/openSUSE/open-build-service/compare/897b9e145032...09740e...
participants (1)
-
Björn Geuken