shipit-engine 0.24.0 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/shipit/stacks.js.coffee +15 -1
- data/app/assets/stylesheets/_base/_icons.scss +18 -0
- data/app/assets/stylesheets/_base/_status-items.scss +28 -0
- data/app/assets/stylesheets/_pages/_commits.scss +1 -5
- data/app/assets/stylesheets/_pages/_deploy.scss +60 -3
- data/app/controllers/concerns/shipit/authentication.rb +1 -1
- data/app/controllers/shipit/merge_status_controller.rb +2 -0
- data/app/controllers/shipit/release_statuses_controller.rb +36 -0
- data/app/jobs/shipit/append_delayed_release_status_job.rb +17 -0
- data/app/jobs/shipit/cache_deploy_spec_job.rb +2 -0
- data/app/jobs/shipit/clear_git_cache_job.rb +1 -1
- data/app/jobs/shipit/create_release_statuses_job.rb +11 -0
- data/app/jobs/shipit/deferred_touch_job.rb +2 -0
- data/app/jobs/shipit/deliver_hook_job.rb +1 -0
- data/app/jobs/shipit/merge_pull_requests_job.rb +2 -0
- data/app/jobs/shipit/perform_commit_checks_job.rb +2 -0
- data/app/jobs/shipit/perform_task_job.rb +2 -4
- data/app/jobs/shipit/refresh_pull_request_job.rb +2 -0
- data/app/models/shipit/anonymous_user.rb +1 -1
- data/app/models/shipit/commit.rb +36 -3
- data/app/models/shipit/deploy.rb +43 -0
- data/app/models/shipit/deploy_spec.rb +16 -2
- data/app/models/shipit/deploy_spec/bundler_discovery.rb +5 -1
- data/app/models/shipit/deploy_spec/file_system.rb +4 -0
- data/app/models/shipit/deploy_spec/kubernetes_discovery.rb +1 -1
- data/app/models/shipit/ephemeral_commit_checks.rb +2 -4
- data/app/models/shipit/hook.rb +36 -3
- data/app/models/shipit/pull_request.rb +4 -2
- data/app/models/shipit/release_status.rb +41 -0
- data/app/models/shipit/rollback.rb +9 -0
- data/app/models/shipit/stack.rb +4 -9
- data/app/models/shipit/status/common.rb +4 -0
- data/app/models/shipit/status/group.rb +2 -1
- data/app/models/shipit/status/missing.rb +4 -0
- data/app/models/shipit/status/unknown.rb +15 -0
- data/app/models/shipit/task.rb +4 -0
- data/app/models/shipit/user.rb +16 -3
- data/app/serializers/shipit/stack_serializer.rb +1 -1
- data/app/views/shipit/deploys/_deploy.html.erb +18 -2
- data/config/locales/en.yml +3 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20180802172632_allow_commit_without_author.rb +6 -0
- data/db/migrate/20180906083930_create_release_statuses.rb +21 -0
- data/lib/shipit.rb +5 -0
- data/lib/shipit/command.rb +14 -18
- data/lib/shipit/deploy_commands.rb +0 -4
- data/lib/shipit/engine.rb +1 -1
- data/lib/shipit/first_parent_commits_iterator.rb +1 -1
- data/lib/shipit/flock.rb +43 -0
- data/lib/shipit/github_app.rb +5 -3
- data/lib/shipit/rollback_commands.rb +6 -0
- data/lib/shipit/task_commands.rb +1 -5
- data/lib/shipit/version.rb +1 -1
- data/test/controllers/release_statuses_controller_test.rb +23 -0
- data/test/dummy/db/schema.rb +18 -3
- data/test/dummy/db/seeds.rb +4 -0
- data/test/fixtures/shipit/commits.yml +13 -0
- data/test/fixtures/shipit/release_statuses.yml +16 -0
- data/test/fixtures/shipit/stacks.yml +4 -0
- data/test/jobs/append_delayed_release_status_job_test.rb +25 -0
- data/test/jobs/cache_deploy_spec_job_test.rb +1 -2
- data/test/jobs/emit_event_job_test.rb +1 -1
- data/test/jobs/github_sync_job_test.rb +1 -0
- data/test/models/commits_test.rb +54 -1
- data/test/models/deploy_spec_test.rb +83 -11
- data/test/models/deploys_test.rb +52 -0
- data/test/models/hook_test.rb +1 -28
- data/test/models/pull_request_test.rb +19 -0
- data/test/models/release_statuses_test.rb +28 -0
- data/test/models/rollbacks_test.rb +2 -0
- data/test/models/stacks_test.rb +1 -1
- data/test/test_helper.rb +5 -0
- data/test/unit/rollback_commands_test.rb +35 -0
- metadata +121 -104
data/test/test_helper.rb
CHANGED
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module Shipit
|
4
|
+
class RollbackCommandsTest < ActiveSupport::TestCase
|
5
|
+
def setup
|
6
|
+
@stack = shipit_stacks(:shipit)
|
7
|
+
@rollback = shipit_rollbacks(:shipit_rollback)
|
8
|
+
@commands = RollbackCommands.new(@rollback)
|
9
|
+
@deploy_spec = stub(
|
10
|
+
dependencies_steps!: ['bundle install --some-args'],
|
11
|
+
deploy_steps!: ['bundle exec cap $ENVIRONMENT deploy'],
|
12
|
+
rollback_steps!: ['bundle exec cap $ENVIRONMENT deploy:rollback'],
|
13
|
+
machine_env: {'GLOBAL' => '1'},
|
14
|
+
directory: nil,
|
15
|
+
clear_working_directory?: true,
|
16
|
+
)
|
17
|
+
@commands.stubs(:deploy_spec).returns(@deploy_spec)
|
18
|
+
|
19
|
+
StackCommands.stubs(git_version: Gem::Version.new('1.8.4.3'))
|
20
|
+
end
|
21
|
+
|
22
|
+
test "#perform calls cap $environment deploy" do
|
23
|
+
commands = @commands.perform
|
24
|
+
assert_equal 1, commands.length
|
25
|
+
command = commands.first
|
26
|
+
assert_equal ['bundle exec cap $ENVIRONMENT deploy:rollback'], command.args
|
27
|
+
end
|
28
|
+
|
29
|
+
test "#perform sets ROLLBACK=1" do
|
30
|
+
commands = @commands.perform
|
31
|
+
command = commands.first
|
32
|
+
assert_equal '1', command.env['ROLLBACK']
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shipit-engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean Boussier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|
@@ -489,6 +489,7 @@ files:
|
|
489
489
|
- app/controllers/shipit/github_authentication_controller.rb
|
490
490
|
- app/controllers/shipit/merge_status_controller.rb
|
491
491
|
- app/controllers/shipit/pull_requests_controller.rb
|
492
|
+
- app/controllers/shipit/release_statuses_controller.rb
|
492
493
|
- app/controllers/shipit/rollbacks_controller.rb
|
493
494
|
- app/controllers/shipit/shipit_controller.rb
|
494
495
|
- app/controllers/shipit/stacks_controller.rb
|
@@ -502,6 +503,7 @@ files:
|
|
502
503
|
- app/helpers/shipit/shipit_helper.rb
|
503
504
|
- app/helpers/shipit/stacks_helper.rb
|
504
505
|
- app/helpers/shipit/tasks_helper.rb
|
506
|
+
- app/jobs/shipit/append_delayed_release_status_job.rb
|
505
507
|
- app/jobs/shipit/background_job.rb
|
506
508
|
- app/jobs/shipit/background_job/unique.rb
|
507
509
|
- app/jobs/shipit/cache_deploy_spec_job.rb
|
@@ -509,6 +511,7 @@ files:
|
|
509
511
|
- app/jobs/shipit/clear_git_cache_job.rb
|
510
512
|
- app/jobs/shipit/continuous_delivery_job.rb
|
511
513
|
- app/jobs/shipit/create_on_github_job.rb
|
514
|
+
- app/jobs/shipit/create_release_statuses_job.rb
|
512
515
|
- app/jobs/shipit/deferred_touch_job.rb
|
513
516
|
- app/jobs/shipit/deliver_hook_job.rb
|
514
517
|
- app/jobs/shipit/destroy_job.rb
|
@@ -554,6 +557,7 @@ files:
|
|
554
557
|
- app/models/shipit/membership.rb
|
555
558
|
- app/models/shipit/output_chunk.rb
|
556
559
|
- app/models/shipit/pull_request.rb
|
560
|
+
- app/models/shipit/release_status.rb
|
557
561
|
- app/models/shipit/rollback.rb
|
558
562
|
- app/models/shipit/stack.rb
|
559
563
|
- app/models/shipit/status.rb
|
@@ -678,6 +682,8 @@ files:
|
|
678
682
|
- db/migrate/20171120161420_add_base_info_to_pull_request.rb
|
679
683
|
- db/migrate/20180202220850_add_aborted_by_to_tasks.rb
|
680
684
|
- db/migrate/20180417130436_remove_all_github_hooks.rb
|
685
|
+
- db/migrate/20180802172632_allow_commit_without_author.rb
|
686
|
+
- db/migrate/20180906083930_create_release_statuses.rb
|
681
687
|
- lib/shipit-engine.rb
|
682
688
|
- lib/shipit.rb
|
683
689
|
- lib/shipit/command.rb
|
@@ -687,6 +693,7 @@ files:
|
|
687
693
|
- lib/shipit/engine.rb
|
688
694
|
- lib/shipit/environment_variables.rb
|
689
695
|
- lib/shipit/first_parent_commits_iterator.rb
|
696
|
+
- lib/shipit/flock.rb
|
690
697
|
- lib/shipit/github_app.rb
|
691
698
|
- lib/shipit/null_serializer.rb
|
692
699
|
- lib/shipit/octokit_iterator.rb
|
@@ -733,6 +740,7 @@ files:
|
|
733
740
|
- test/controllers/github_authentication_controller_test.rb
|
734
741
|
- test/controllers/merge_status_controller_test.rb
|
735
742
|
- test/controllers/pull_requests_controller_test.rb
|
743
|
+
- test/controllers/release_statuses_controller_test.rb
|
736
744
|
- test/controllers/rollbacks_controller_test.rb
|
737
745
|
- test/controllers/stacks_controller_test.rb
|
738
746
|
- test/controllers/status_controller_test.rb
|
@@ -789,6 +797,7 @@ files:
|
|
789
797
|
- test/fixtures/shipit/memberships.yml
|
790
798
|
- test/fixtures/shipit/output_chunks.yml
|
791
799
|
- test/fixtures/shipit/pull_requests.yml
|
800
|
+
- test/fixtures/shipit/release_statuses.yml
|
792
801
|
- test/fixtures/shipit/stacks.yml
|
793
802
|
- test/fixtures/shipit/statuses.yml
|
794
803
|
- test/fixtures/shipit/tasks.yml
|
@@ -802,6 +811,7 @@ files:
|
|
802
811
|
- test/helpers/links_helper.rb
|
803
812
|
- test/helpers/payloads_helper.rb
|
804
813
|
- test/helpers/queries_helper.rb
|
814
|
+
- test/jobs/append_delayed_release_status_job_test.rb
|
805
815
|
- test/jobs/cache_deploy_spec_job_test.rb
|
806
816
|
- test/jobs/chunk_rollup_job_test.rb
|
807
817
|
- test/jobs/deliver_hook_job_test.rb
|
@@ -830,6 +840,7 @@ files:
|
|
830
840
|
- test/models/membership_test.rb
|
831
841
|
- test/models/output_chunk_test.rb
|
832
842
|
- test/models/pull_request_test.rb
|
843
|
+
- test/models/release_statuses_test.rb
|
833
844
|
- test/models/rollbacks_test.rb
|
834
845
|
- test/models/stacks_test.rb
|
835
846
|
- test/models/status/group_test.rb
|
@@ -849,6 +860,7 @@ files:
|
|
849
860
|
- test/unit/environment_variables_test.rb
|
850
861
|
- test/unit/github_app_test.rb
|
851
862
|
- test/unit/github_url_helper_test.rb
|
863
|
+
- test/unit/rollback_commands_test.rb
|
852
864
|
- test/unit/shipit_test.rb
|
853
865
|
- test/unit/variable_definition_test.rb
|
854
866
|
- vendor/assets/javascripts/clusterize.js
|
@@ -882,138 +894,143 @@ signing_key:
|
|
882
894
|
specification_version: 4
|
883
895
|
summary: Application deployment software
|
884
896
|
test_files:
|
885
|
-
- test/
|
886
|
-
- test/
|
897
|
+
- test/helpers/hooks_helper.rb
|
898
|
+
- test/helpers/links_helper.rb
|
899
|
+
- test/helpers/fixture_aliases_helper.rb
|
900
|
+
- test/helpers/json_helper.rb
|
901
|
+
- test/helpers/payloads_helper.rb
|
902
|
+
- test/helpers/api_helper.rb
|
903
|
+
- test/helpers/queries_helper.rb
|
904
|
+
- test/models/membership_test.rb
|
905
|
+
- test/models/rollbacks_test.rb
|
906
|
+
- test/models/output_chunk_test.rb
|
907
|
+
- test/models/pull_request_test.rb
|
908
|
+
- test/models/team_test.rb
|
909
|
+
- test/models/commit_deployment_status_test.rb
|
910
|
+
- test/models/deploy_spec_test.rb
|
911
|
+
- test/models/task_definitions_test.rb
|
912
|
+
- test/models/stacks_test.rb
|
913
|
+
- test/models/undeployed_commits_test.rb
|
914
|
+
- test/models/github_hook_test.rb
|
915
|
+
- test/models/status/group_test.rb
|
916
|
+
- test/models/status/missing_test.rb
|
917
|
+
- test/models/api_client_test.rb
|
918
|
+
- test/models/deploys_test.rb
|
919
|
+
- test/models/hook_test.rb
|
920
|
+
- test/models/commit_checks_test.rb
|
921
|
+
- test/models/status_test.rb
|
922
|
+
- test/models/users_test.rb
|
923
|
+
- test/models/commit_deployment_test.rb
|
924
|
+
- test/models/release_statuses_test.rb
|
925
|
+
- test/models/duration_test.rb
|
926
|
+
- test/models/tasks_test.rb
|
927
|
+
- test/models/delivery_test.rb
|
928
|
+
- test/models/commits_test.rb
|
887
929
|
- test/fixtures/payloads/push_not_master.json
|
888
930
|
- test/fixtures/payloads/status_master.json
|
889
|
-
- test/fixtures/
|
890
|
-
- test/fixtures/
|
891
|
-
- test/fixtures/shipit/
|
892
|
-
- test/fixtures/shipit/commit_deployments.yml
|
931
|
+
- test/fixtures/payloads/push_master.json
|
932
|
+
- test/fixtures/timeout
|
933
|
+
- test/fixtures/shipit/users.yml
|
893
934
|
- test/fixtures/shipit/output_chunks.yml
|
894
|
-
- test/fixtures/shipit/
|
935
|
+
- test/fixtures/shipit/teams.yml
|
936
|
+
- test/fixtures/shipit/github_hooks.yml
|
895
937
|
- test/fixtures/shipit/hooks.yml
|
896
|
-
- test/fixtures/shipit/users.yml
|
897
|
-
- test/fixtures/shipit/stacks.yml
|
898
|
-
- test/fixtures/shipit/api_clients.yml
|
899
|
-
- test/fixtures/shipit/commit_deployment_statuses.yml
|
900
938
|
- test/fixtures/shipit/commits.yml
|
939
|
+
- test/fixtures/shipit/commit_deployments.yml
|
901
940
|
- test/fixtures/shipit/statuses.yml
|
902
|
-
- test/fixtures/shipit/
|
941
|
+
- test/fixtures/shipit/stacks.yml
|
942
|
+
- test/fixtures/shipit/pull_requests.yml
|
943
|
+
- test/fixtures/shipit/api_clients.yml
|
944
|
+
- test/fixtures/shipit/tasks.yml
|
945
|
+
- test/fixtures/shipit/release_statuses.yml
|
903
946
|
- test/fixtures/shipit/memberships.yml
|
904
|
-
- test/
|
905
|
-
- test/
|
906
|
-
- test/dummy/public/favicon.ico
|
907
|
-
- test/dummy/public/422.html
|
908
|
-
- test/dummy/public/500.html
|
909
|
-
- test/dummy/db/schema.rb
|
910
|
-
- test/dummy/db/seeds.rb
|
911
|
-
- test/dummy/config.ru
|
912
|
-
- test/dummy/bin/setup
|
913
|
-
- test/dummy/bin/rake
|
914
|
-
- test/dummy/bin/bundle
|
915
|
-
- test/dummy/bin/rails
|
916
|
-
- test/dummy/config/database.yml
|
947
|
+
- test/fixtures/shipit/commit_deployment_statuses.yml
|
948
|
+
- test/fixtures/shipit/deliveries.yml
|
917
949
|
- test/dummy/config/secrets.yml
|
918
|
-
- test/dummy/config/
|
950
|
+
- test/dummy/config/boot.rb
|
951
|
+
- test/dummy/config/database.postgresql.yml
|
952
|
+
- test/dummy/config/database.mysql.yml
|
953
|
+
- test/dummy/config/locales/en.yml
|
919
954
|
- test/dummy/config/environments/production.rb
|
920
955
|
- test/dummy/config/environments/test.rb
|
921
|
-
- test/dummy/config/
|
922
|
-
- test/dummy/config/
|
923
|
-
- test/dummy/config/
|
956
|
+
- test/dummy/config/environments/development.rb
|
957
|
+
- test/dummy/config/application.rb
|
958
|
+
- test/dummy/config/routes.rb
|
959
|
+
- test/dummy/config/initializers/0_load_development_secrets.rb
|
924
960
|
- test/dummy/config/initializers/wrap_parameters.rb
|
961
|
+
- test/dummy/config/initializers/session_store.rb
|
925
962
|
- test/dummy/config/initializers/inflections.rb
|
926
|
-
- test/dummy/config/initializers/
|
963
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
927
964
|
- test/dummy/config/initializers/assets.rb
|
928
|
-
- test/dummy/config/initializers/session_store.rb
|
929
965
|
- test/dummy/config/initializers/mime_types.rb
|
930
|
-
- test/dummy/config/
|
931
|
-
- test/dummy/config/
|
966
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
967
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
932
968
|
- test/dummy/config/environment.rb
|
933
|
-
- test/dummy/config/database.
|
934
|
-
- test/dummy/
|
935
|
-
- test/dummy/
|
936
|
-
- test/dummy/
|
969
|
+
- test/dummy/config/database.yml
|
970
|
+
- test/dummy/Rakefile
|
971
|
+
- test/dummy/bin/bundle
|
972
|
+
- test/dummy/bin/rails
|
973
|
+
- test/dummy/bin/rake
|
974
|
+
- test/dummy/bin/setup
|
975
|
+
- test/dummy/public/422.html
|
976
|
+
- test/dummy/public/favicon.ico
|
977
|
+
- test/dummy/public/404.html
|
978
|
+
- test/dummy/public/500.html
|
937
979
|
- test/dummy/app/helpers/application_helper.rb
|
938
|
-
- test/dummy/app/views/layouts/application.html.erb
|
939
|
-
- test/dummy/app/controllers/application_controller.rb
|
940
980
|
- test/dummy/app/assets/stylesheets/application.css
|
941
981
|
- test/dummy/app/assets/javascripts/application.js
|
942
|
-
- test/dummy/
|
943
|
-
- test/
|
944
|
-
- test/
|
945
|
-
- test/
|
946
|
-
- test/
|
947
|
-
- test/helpers/api_helper.rb
|
948
|
-
- test/helpers/fixture_aliases_helper.rb
|
949
|
-
- test/helpers/queries_helper.rb
|
950
|
-
- test/models/users_test.rb
|
951
|
-
- test/models/rollbacks_test.rb
|
952
|
-
- test/models/github_hook_test.rb
|
953
|
-
- test/models/commit_deployment_status_test.rb
|
954
|
-
- test/models/task_definitions_test.rb
|
955
|
-
- test/models/team_test.rb
|
956
|
-
- test/models/deploy_spec_test.rb
|
957
|
-
- test/models/status_test.rb
|
958
|
-
- test/models/deploys_test.rb
|
959
|
-
- test/models/api_client_test.rb
|
960
|
-
- test/models/delivery_test.rb
|
961
|
-
- test/models/membership_test.rb
|
962
|
-
- test/models/hook_test.rb
|
963
|
-
- test/models/pull_request_test.rb
|
964
|
-
- test/models/duration_test.rb
|
965
|
-
- test/models/commits_test.rb
|
966
|
-
- test/models/commit_deployment_test.rb
|
967
|
-
- test/models/tasks_test.rb
|
968
|
-
- test/models/output_chunk_test.rb
|
969
|
-
- test/models/stacks_test.rb
|
970
|
-
- test/models/undeployed_commits_test.rb
|
971
|
-
- test/models/status/group_test.rb
|
972
|
-
- test/models/status/missing_test.rb
|
973
|
-
- test/models/commit_checks_test.rb
|
974
|
-
- test/controllers/status_controller_test.rb
|
982
|
+
- test/dummy/app/views/layouts/application.html.erb
|
983
|
+
- test/dummy/app/controllers/application_controller.rb
|
984
|
+
- test/dummy/db/seeds.rb
|
985
|
+
- test/dummy/db/schema.rb
|
986
|
+
- test/dummy/config.ru
|
975
987
|
- test/controllers/deploys_controller_test.rb
|
976
|
-
- test/controllers/
|
977
|
-
- test/controllers/
|
978
|
-
- test/controllers/commit_checks_controller_test.rb
|
979
|
-
- test/controllers/tasks_controller_test.rb
|
980
|
-
- test/controllers/ccmenu_controller_test.rb
|
981
|
-
- test/controllers/github_authentication_controller_test.rb
|
982
|
-
- test/controllers/webhooks_controller_test.rb
|
983
|
-
- test/controllers/merge_status_controller_test.rb
|
984
|
-
- test/controllers/rollbacks_controller_test.rb
|
988
|
+
- test/controllers/stacks_controller_test.rb
|
989
|
+
- test/controllers/status_controller_test.rb
|
985
990
|
- test/controllers/api/deploys_controller_test.rb
|
986
991
|
- test/controllers/api/locks_controller_test.rb
|
992
|
+
- test/controllers/api/stacks_controller_test.rb
|
993
|
+
- test/controllers/api/ccmenu_controller_test.rb
|
987
994
|
- test/controllers/api/commits_controller_test.rb
|
988
|
-
- test/controllers/api/
|
995
|
+
- test/controllers/api/outputs_controller_test.rb
|
989
996
|
- test/controllers/api/hooks_controller_test.rb
|
997
|
+
- test/controllers/api/pull_requests_controller_test.rb
|
990
998
|
- test/controllers/api/tasks_controller_test.rb
|
991
|
-
- test/controllers/api/ccmenu_controller_test.rb
|
992
|
-
- test/controllers/api/outputs_controller_test.rb
|
993
999
|
- test/controllers/api/base_controller_test.rb
|
994
|
-
- test/controllers/
|
995
|
-
- test/controllers/
|
1000
|
+
- test/controllers/commit_checks_controller_test.rb
|
1001
|
+
- test/controllers/release_statuses_controller_test.rb
|
1002
|
+
- test/controllers/webhooks_controller_test.rb
|
1003
|
+
- test/controllers/ccmenu_controller_test.rb
|
1004
|
+
- test/controllers/rollbacks_controller_test.rb
|
1005
|
+
- test/controllers/commits_controller_test.rb
|
1006
|
+
- test/controllers/github_authentication_controller_test.rb
|
1007
|
+
- test/controllers/pull_requests_controller_test.rb
|
1008
|
+
- test/controllers/tasks_controller_test.rb
|
1009
|
+
- test/controllers/merge_status_controller_test.rb
|
1010
|
+
- test/test_command_integration.rb
|
996
1011
|
- test/test_helper.rb
|
997
|
-
- test/jobs/deliver_hook_job_test.rb
|
998
|
-
- test/jobs/purge_old_deliveries_job_test.rb
|
999
|
-
- test/jobs/unique_job_test.rb
|
1000
|
-
- test/jobs/refresh_status_job_test.rb
|
1001
|
-
- test/jobs/perform_task_job_test.rb
|
1002
|
-
- test/jobs/cache_deploy_spec_job_test.rb
|
1003
|
-
- test/jobs/refresh_github_user_job_test.rb
|
1004
1012
|
- test/jobs/destroy_stack_job_test.rb
|
1013
|
+
- test/jobs/fetch_deployed_revision_job_test.rb
|
1014
|
+
- test/jobs/fetch_commit_stats_job_test.rb
|
1015
|
+
- test/jobs/merge_pull_requests_job_test.rb
|
1016
|
+
- test/jobs/cache_deploy_spec_job_test.rb
|
1005
1017
|
- test/jobs/emit_event_job_test.rb
|
1018
|
+
- test/jobs/refresh_github_user_job_test.rb
|
1006
1019
|
- test/jobs/chunk_rollup_job_test.rb
|
1007
|
-
- test/jobs/
|
1020
|
+
- test/jobs/refresh_status_job_test.rb
|
1021
|
+
- test/jobs/purge_old_deliveries_job_test.rb
|
1022
|
+
- test/jobs/deliver_hook_job_test.rb
|
1008
1023
|
- test/jobs/github_sync_job_test.rb
|
1009
|
-
- test/jobs/
|
1010
|
-
- test/jobs/
|
1011
|
-
- test/
|
1012
|
-
- test/unit/
|
1024
|
+
- test/jobs/perform_task_job_test.rb
|
1025
|
+
- test/jobs/append_delayed_release_status_job_test.rb
|
1026
|
+
- test/jobs/unique_job_test.rb
|
1027
|
+
- test/unit/environment_variables_test.rb
|
1013
1028
|
- test/unit/commands_test.rb
|
1014
|
-
- test/unit/
|
1029
|
+
- test/unit/github_app_test.rb
|
1030
|
+
- test/unit/rollback_commands_test.rb
|
1015
1031
|
- test/unit/command_test.rb
|
1016
|
-
- test/unit/
|
1017
|
-
- test/unit/deploy_commands_test.rb
|
1018
|
-
- test/unit/environment_variables_test.rb
|
1032
|
+
- test/unit/shipit_test.rb
|
1019
1033
|
- test/unit/csv_serializer_test.rb
|
1034
|
+
- test/unit/deploy_commands_test.rb
|
1035
|
+
- test/unit/variable_definition_test.rb
|
1036
|
+
- test/unit/github_url_helper_test.rb
|