shipit-engine 0.27.1 → 0.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -1
- data/app/assets/stylesheets/_pages/_commits.scss +2 -0
- data/app/assets/stylesheets/_pages/_deploy.scss +6 -0
- data/app/controllers/shipit/api/release_statuses_controller.rb +22 -0
- data/app/controllers/shipit/api/stacks_controller.rb +6 -1
- data/app/controllers/shipit/commits_controller.rb +12 -1
- data/app/controllers/shipit/deploys_controller.rb +11 -0
- data/app/controllers/shipit/stacks_controller.rb +29 -1
- data/app/controllers/shipit/tasks_controller.rb +13 -1
- data/app/helpers/shipit/merge_status_helper.rb +2 -2
- data/app/helpers/shipit/stacks_helper.rb +10 -4
- data/app/jobs/shipit/perform_task_job.rb +1 -0
- data/app/jobs/shipit/update_github_last_deployed_ref_job.rb +41 -0
- data/app/models/shipit/command_line_user.rb +58 -0
- data/app/models/shipit/commit.rb +42 -2
- data/app/models/shipit/deploy.rb +31 -2
- data/app/models/shipit/deploy_spec/lerna_discovery.rb +43 -19
- data/app/models/shipit/deploy_spec/pypi_discovery.rb +5 -1
- data/app/models/shipit/rollback.rb +4 -2
- data/app/models/shipit/stack.rb +72 -15
- data/app/models/shipit/task.rb +30 -0
- data/app/models/shipit/undeployed_commit.rb +10 -1
- data/app/serializers/shipit/command_line_user_serializer.rb +4 -0
- data/app/views/layouts/shipit.html.erb +5 -1
- data/app/views/shipit/commits/_commit.html.erb +7 -2
- data/app/views/shipit/merge_status/_commit_count_warning.html.erb +1 -5
- data/app/views/shipit/merge_status/backlogged.html.erb +1 -1
- data/app/views/shipit/merge_status/failure.html.erb +1 -1
- data/app/views/shipit/merge_status/locked.html.erb +1 -1
- data/app/views/shipit/merge_status/success.html.erb +1 -1
- data/app/views/shipit/stacks/show.html.erb +10 -1
- data/app/views/shipit/tasks/_task_output.html.erb +2 -2
- data/config/locales/en.yml +2 -1
- data/config/routes.rb +8 -1
- data/db/migrate/20190502020249_add_lock_author_id_to_commits.rb +5 -0
- data/lib/shipit.rb +14 -2
- data/lib/shipit/cast_value.rb +9 -0
- data/lib/shipit/command.rb +62 -16
- data/lib/shipit/line_buffer.rb +42 -0
- data/lib/shipit/version.rb +1 -1
- data/lib/tasks/shipit.rake +27 -0
- data/test/controllers/api/release_statuses_controller_test.rb +66 -0
- data/test/controllers/api/stacks_controller_test.rb +19 -0
- data/test/controllers/commits_controller_test.rb +30 -6
- data/test/controllers/deploys_controller_test.rb +51 -2
- data/test/controllers/tasks_controller_test.rb +24 -0
- data/test/dummy/db/schema.rb +2 -1
- data/test/dummy/db/seeds.rb +2 -0
- data/test/fixtures/shipit/check_runs.yml +11 -0
- data/test/fixtures/shipit/commits.yml +104 -0
- data/test/fixtures/shipit/stacks.yml +98 -3
- data/test/fixtures/shipit/tasks.yml +42 -0
- data/test/jobs/update_github_last_deployed_ref_job_test.rb +88 -0
- data/test/models/commits_test.rb +88 -1
- data/test/models/deploy_spec_test.rb +34 -6
- data/test/models/deploys_test.rb +308 -6
- data/test/models/rollbacks_test.rb +17 -11
- data/test/models/stacks_test.rb +217 -4
- data/test/models/tasks_test.rb +13 -0
- data/test/models/undeployed_commits_test.rb +62 -3
- data/test/test_helper.rb +0 -1
- data/test/unit/command_test.rb +55 -0
- data/test/unit/line_buffer_test.rb +20 -0
- metadata +142 -128
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
module Shipit
|
6
|
+
class LineBufferTest < ActiveSupport::TestCase
|
7
|
+
setup { @buffer = LineBuffer.new }
|
8
|
+
|
9
|
+
test "buffers partial lines" do
|
10
|
+
refute_predicate(@buffer.buffer("a"), :any?)
|
11
|
+
assert_equal(["a"], @buffer.buffer("\n").to_a)
|
12
|
+
assert_predicate(@buffer, :empty?)
|
13
|
+
end
|
14
|
+
|
15
|
+
test "splits up multiple lines" do
|
16
|
+
assert_equal(%w(a b), @buffer.buffer("a\nb\n").to_a)
|
17
|
+
assert_predicate(@buffer, :empty?)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
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.28.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: 2019-
|
11
|
+
date: 2019-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|
@@ -482,6 +482,7 @@ files:
|
|
482
482
|
- app/controllers/shipit/api/locks_controller.rb
|
483
483
|
- app/controllers/shipit/api/outputs_controller.rb
|
484
484
|
- app/controllers/shipit/api/pull_requests_controller.rb
|
485
|
+
- app/controllers/shipit/api/release_statuses_controller.rb
|
485
486
|
- app/controllers/shipit/api/stacks_controller.rb
|
486
487
|
- app/controllers/shipit/api/tasks_controller.rb
|
487
488
|
- app/controllers/shipit/ccmenu_url_controller.rb
|
@@ -532,11 +533,13 @@ files:
|
|
532
533
|
- app/jobs/shipit/refresh_statuses_job.rb
|
533
534
|
- app/jobs/shipit/setup_github_hook_job.rb
|
534
535
|
- app/jobs/shipit/update_estimated_deploy_duration_job.rb
|
536
|
+
- app/jobs/shipit/update_github_last_deployed_ref_job.rb
|
535
537
|
- app/models/concerns/shipit/deferred_touch.rb
|
536
538
|
- app/models/shipit/anonymous_user.rb
|
537
539
|
- app/models/shipit/api_client.rb
|
538
540
|
- app/models/shipit/application_record.rb
|
539
541
|
- app/models/shipit/check_run.rb
|
542
|
+
- app/models/shipit/command_line_user.rb
|
540
543
|
- app/models/shipit/commit.rb
|
541
544
|
- app/models/shipit/commit_checks.rb
|
542
545
|
- app/models/shipit/commit_deployment.rb
|
@@ -578,6 +581,7 @@ files:
|
|
578
581
|
- app/models/shipit/variable_definition.rb
|
579
582
|
- app/serializers/concerns/shipit/conditional_attributes.rb
|
580
583
|
- app/serializers/shipit/anonymous_user_serializer.rb
|
584
|
+
- app/serializers/shipit/command_line_user_serializer.rb
|
581
585
|
- app/serializers/shipit/commit_serializer.rb
|
582
586
|
- app/serializers/shipit/deploy_serializer.rb
|
583
587
|
- app/serializers/shipit/hook_serializer.rb
|
@@ -689,8 +693,10 @@ files:
|
|
689
693
|
- db/migrate/20180802172632_allow_commit_without_author.rb
|
690
694
|
- db/migrate/20180906083930_create_release_statuses.rb
|
691
695
|
- db/migrate/20181010150947_create_shipit_check_runs.rb
|
696
|
+
- db/migrate/20190502020249_add_lock_author_id_to_commits.rb
|
692
697
|
- lib/shipit-engine.rb
|
693
698
|
- lib/shipit.rb
|
699
|
+
- lib/shipit/cast_value.rb
|
694
700
|
- lib/shipit/command.rb
|
695
701
|
- lib/shipit/commands.rb
|
696
702
|
- lib/shipit/csv_serializer.rb
|
@@ -700,6 +706,7 @@ files:
|
|
700
706
|
- lib/shipit/first_parent_commits_iterator.rb
|
701
707
|
- lib/shipit/flock.rb
|
702
708
|
- lib/shipit/github_app.rb
|
709
|
+
- lib/shipit/line_buffer.rb
|
703
710
|
- lib/shipit/null_serializer.rb
|
704
711
|
- lib/shipit/octokit_check_runs.rb
|
705
712
|
- lib/shipit/octokit_iterator.rb
|
@@ -728,6 +735,7 @@ files:
|
|
728
735
|
- lib/snippets/release-gem
|
729
736
|
- lib/tasks/cron.rake
|
730
737
|
- lib/tasks/dev.rake
|
738
|
+
- lib/tasks/shipit.rake
|
731
739
|
- lib/tasks/teams.rake
|
732
740
|
- test/controllers/api/base_controller_test.rb
|
733
741
|
- test/controllers/api/ccmenu_controller_test.rb
|
@@ -737,6 +745,7 @@ files:
|
|
737
745
|
- test/controllers/api/locks_controller_test.rb
|
738
746
|
- test/controllers/api/outputs_controller_test.rb
|
739
747
|
- test/controllers/api/pull_requests_controller_test.rb
|
748
|
+
- test/controllers/api/release_statuses_controller_test.rb
|
740
749
|
- test/controllers/api/stacks_controller_test.rb
|
741
750
|
- test/controllers/api/tasks_controller_test.rb
|
742
751
|
- test/controllers/ccmenu_controller_test.rb
|
@@ -834,6 +843,7 @@ files:
|
|
834
843
|
- test/jobs/refresh_github_user_job_test.rb
|
835
844
|
- test/jobs/refresh_status_job_test.rb
|
836
845
|
- test/jobs/unique_job_test.rb
|
846
|
+
- test/jobs/update_github_last_deployed_ref_job_test.rb
|
837
847
|
- test/models/api_client_test.rb
|
838
848
|
- test/models/commit_checks_test.rb
|
839
849
|
- test/models/commit_deployment_status_test.rb
|
@@ -869,6 +879,7 @@ files:
|
|
869
879
|
- test/unit/environment_variables_test.rb
|
870
880
|
- test/unit/github_app_test.rb
|
871
881
|
- test/unit/github_url_helper_test.rb
|
882
|
+
- test/unit/line_buffer_test.rb
|
872
883
|
- test/unit/rollback_commands_test.rb
|
873
884
|
- test/unit/shipit_test.rb
|
874
885
|
- test/unit/variable_definition_test.rb
|
@@ -903,146 +914,149 @@ signing_key:
|
|
903
914
|
specification_version: 4
|
904
915
|
summary: Application deployment software
|
905
916
|
test_files:
|
906
|
-
- test/
|
907
|
-
- test/
|
908
|
-
- test/
|
909
|
-
- test/
|
910
|
-
- test/
|
911
|
-
- test/
|
912
|
-
- test/
|
913
|
-
- test/
|
914
|
-
- test/
|
915
|
-
- test/controllers/ccmenu_controller_test.rb
|
916
|
-
- test/controllers/api/locks_controller_test.rb
|
917
|
-
- test/controllers/api/base_controller_test.rb
|
918
|
-
- test/controllers/api/outputs_controller_test.rb
|
919
|
-
- test/controllers/api/pull_requests_controller_test.rb
|
920
|
-
- test/controllers/api/tasks_controller_test.rb
|
921
|
-
- test/controllers/api/hooks_controller_test.rb
|
922
|
-
- test/controllers/api/commits_controller_test.rb
|
923
|
-
- test/controllers/api/deploys_controller_test.rb
|
924
|
-
- test/controllers/api/ccmenu_controller_test.rb
|
925
|
-
- test/controllers/api/stacks_controller_test.rb
|
926
|
-
- test/controllers/rollbacks_controller_test.rb
|
927
|
-
- test/controllers/commit_checks_controller_test.rb
|
928
|
-
- test/controllers/stacks_controller_test.rb
|
929
|
-
- test/unit/csv_serializer_test.rb
|
930
|
-
- test/unit/variable_definition_test.rb
|
931
|
-
- test/unit/commands_test.rb
|
932
|
-
- test/unit/shipit_test.rb
|
933
|
-
- test/unit/command_test.rb
|
934
|
-
- test/unit/environment_variables_test.rb
|
935
|
-
- test/unit/github_url_helper_test.rb
|
936
|
-
- test/unit/github_app_test.rb
|
937
|
-
- test/unit/deploy_commands_test.rb
|
938
|
-
- test/unit/rollback_commands_test.rb
|
939
|
-
- test/test_helper.rb
|
940
|
-
- test/jobs/refresh_status_job_test.rb
|
941
|
-
- test/jobs/chunk_rollup_job_test.rb
|
942
|
-
- test/jobs/deliver_hook_job_test.rb
|
943
|
-
- test/jobs/emit_event_job_test.rb
|
944
|
-
- test/jobs/perform_task_job_test.rb
|
945
|
-
- test/jobs/mark_deploy_healthy_job_test.rb
|
946
|
-
- test/jobs/destroy_stack_job_test.rb
|
947
|
-
- test/jobs/purge_old_deliveries_job_test.rb
|
948
|
-
- test/jobs/github_sync_job_test.rb
|
949
|
-
- test/jobs/unique_job_test.rb
|
950
|
-
- test/jobs/refresh_github_user_job_test.rb
|
951
|
-
- test/jobs/merge_pull_requests_job_test.rb
|
952
|
-
- test/jobs/fetch_deployed_revision_job_test.rb
|
953
|
-
- test/jobs/fetch_commit_stats_job_test.rb
|
954
|
-
- test/jobs/cache_deploy_spec_job_test.rb
|
955
|
-
- test/models/status/missing_test.rb
|
956
|
-
- test/models/status/group_test.rb
|
957
|
-
- test/models/tasks_test.rb
|
958
|
-
- test/models/github_hook_test.rb
|
959
|
-
- test/models/duration_test.rb
|
917
|
+
- test/helpers/hooks_helper.rb
|
918
|
+
- test/helpers/links_helper.rb
|
919
|
+
- test/helpers/fixture_aliases_helper.rb
|
920
|
+
- test/helpers/json_helper.rb
|
921
|
+
- test/helpers/payloads_helper.rb
|
922
|
+
- test/helpers/api_helper.rb
|
923
|
+
- test/helpers/queries_helper.rb
|
924
|
+
- test/models/membership_test.rb
|
925
|
+
- test/models/rollbacks_test.rb
|
960
926
|
- test/models/output_chunk_test.rb
|
961
|
-
- test/models/
|
927
|
+
- test/models/pull_request_test.rb
|
962
928
|
- test/models/team_test.rb
|
963
|
-
- test/models/release_statuses_test.rb
|
964
|
-
- test/models/commits_test.rb
|
965
|
-
- test/models/commit_deployment_test.rb
|
966
|
-
- test/models/deploy_spec_test.rb
|
967
929
|
- test/models/commit_deployment_status_test.rb
|
968
|
-
- test/models/
|
969
|
-
- test/models/
|
970
|
-
- test/models/undeployed_commits_test.rb
|
971
|
-
- test/models/commit_checks_test.rb
|
972
|
-
- test/models/delivery_test.rb
|
973
|
-
- test/models/status_test.rb
|
930
|
+
- test/models/deploy_spec_test.rb
|
931
|
+
- test/models/task_definitions_test.rb
|
974
932
|
- test/models/stacks_test.rb
|
933
|
+
- test/models/undeployed_commits_test.rb
|
934
|
+
- test/models/shipit/check_run_test.rb
|
935
|
+
- test/models/github_hook_test.rb
|
936
|
+
- test/models/status/group_test.rb
|
937
|
+
- test/models/status/missing_test.rb
|
938
|
+
- test/models/api_client_test.rb
|
975
939
|
- test/models/deploys_test.rb
|
976
940
|
- test/models/hook_test.rb
|
977
|
-
- test/models/
|
978
|
-
- test/models/
|
941
|
+
- test/models/commit_checks_test.rb
|
942
|
+
- test/models/status_test.rb
|
979
943
|
- test/models/users_test.rb
|
980
|
-
- test/models/
|
981
|
-
- test/
|
982
|
-
- test/
|
983
|
-
- test/
|
984
|
-
- test/
|
985
|
-
- test/
|
986
|
-
- test/helpers/hooks_helper.rb
|
987
|
-
- test/helpers/json_helper.rb
|
988
|
-
- test/dummy/app/controllers/application_controller.rb
|
989
|
-
- test/dummy/app/helpers/application_helper.rb
|
990
|
-
- test/dummy/app/views/layouts/application.html.erb
|
991
|
-
- test/dummy/app/assets/stylesheets/application.css
|
992
|
-
- test/dummy/app/assets/javascripts/application.js
|
993
|
-
- test/dummy/bin/bundle
|
994
|
-
- test/dummy/bin/rake
|
995
|
-
- test/dummy/bin/rails
|
996
|
-
- test/dummy/bin/setup
|
997
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
998
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
999
|
-
- test/dummy/config/initializers/0_load_development_secrets.rb
|
1000
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
1001
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
1002
|
-
- test/dummy/config/initializers/session_store.rb
|
1003
|
-
- test/dummy/config/initializers/assets.rb
|
1004
|
-
- test/dummy/config/initializers/mime_types.rb
|
1005
|
-
- test/dummy/config/initializers/inflections.rb
|
1006
|
-
- test/dummy/config/secrets.yml
|
1007
|
-
- test/dummy/config/database.mysql.yml
|
1008
|
-
- test/dummy/config/application.rb
|
1009
|
-
- test/dummy/config/database.postgresql.yml
|
1010
|
-
- test/dummy/config/database.yml
|
1011
|
-
- test/dummy/config/environment.rb
|
1012
|
-
- test/dummy/config/boot.rb
|
1013
|
-
- test/dummy/config/locales/en.yml
|
1014
|
-
- test/dummy/config/environments/development.rb
|
1015
|
-
- test/dummy/config/environments/test.rb
|
1016
|
-
- test/dummy/config/environments/production.rb
|
1017
|
-
- test/dummy/config/routes.rb
|
1018
|
-
- test/dummy/public/500.html
|
1019
|
-
- test/dummy/public/favicon.ico
|
1020
|
-
- test/dummy/public/422.html
|
1021
|
-
- test/dummy/public/404.html
|
1022
|
-
- test/dummy/db/schema.rb
|
1023
|
-
- test/dummy/db/seeds.rb
|
1024
|
-
- test/dummy/Rakefile
|
1025
|
-
- test/dummy/config.ru
|
1026
|
-
- test/test_command_integration.rb
|
1027
|
-
- test/fixtures/payloads/push_not_master.json
|
944
|
+
- test/models/commit_deployment_test.rb
|
945
|
+
- test/models/release_statuses_test.rb
|
946
|
+
- test/models/duration_test.rb
|
947
|
+
- test/models/tasks_test.rb
|
948
|
+
- test/models/delivery_test.rb
|
949
|
+
- test/models/commits_test.rb
|
1028
950
|
- test/fixtures/payloads/check_suite_master.json
|
1029
|
-
- test/fixtures/payloads/
|
951
|
+
- test/fixtures/payloads/push_not_master.json
|
1030
952
|
- test/fixtures/payloads/status_master.json
|
953
|
+
- test/fixtures/payloads/push_master.json
|
1031
954
|
- test/fixtures/timeout
|
1032
|
-
- test/fixtures/shipit/memberships.yml
|
1033
|
-
- test/fixtures/shipit/check_runs.yml
|
1034
|
-
- test/fixtures/shipit/tasks.yml
|
1035
955
|
- test/fixtures/shipit/users.yml
|
1036
|
-
- test/fixtures/shipit/
|
1037
|
-
- test/fixtures/shipit/deliveries.yml
|
1038
|
-
- test/fixtures/shipit/stacks.yml
|
1039
|
-
- test/fixtures/shipit/pull_requests.yml
|
956
|
+
- test/fixtures/shipit/output_chunks.yml
|
1040
957
|
- test/fixtures/shipit/teams.yml
|
1041
958
|
- test/fixtures/shipit/github_hooks.yml
|
1042
959
|
- test/fixtures/shipit/hooks.yml
|
1043
|
-
- test/fixtures/shipit/release_statuses.yml
|
1044
|
-
- test/fixtures/shipit/commit_deployment_statuses.yml
|
1045
960
|
- test/fixtures/shipit/commits.yml
|
1046
961
|
- test/fixtures/shipit/commit_deployments.yml
|
962
|
+
- test/fixtures/shipit/statuses.yml
|
963
|
+
- test/fixtures/shipit/stacks.yml
|
964
|
+
- test/fixtures/shipit/pull_requests.yml
|
1047
965
|
- test/fixtures/shipit/api_clients.yml
|
1048
|
-
- test/fixtures/shipit/
|
966
|
+
- test/fixtures/shipit/tasks.yml
|
967
|
+
- test/fixtures/shipit/release_statuses.yml
|
968
|
+
- test/fixtures/shipit/memberships.yml
|
969
|
+
- test/fixtures/shipit/commit_deployment_statuses.yml
|
970
|
+
- test/fixtures/shipit/deliveries.yml
|
971
|
+
- test/fixtures/shipit/check_runs.yml
|
972
|
+
- test/dummy/config/secrets.yml
|
973
|
+
- test/dummy/config/boot.rb
|
974
|
+
- test/dummy/config/database.postgresql.yml
|
975
|
+
- test/dummy/config/database.mysql.yml
|
976
|
+
- test/dummy/config/locales/en.yml
|
977
|
+
- test/dummy/config/environments/production.rb
|
978
|
+
- test/dummy/config/environments/test.rb
|
979
|
+
- test/dummy/config/environments/development.rb
|
980
|
+
- test/dummy/config/application.rb
|
981
|
+
- test/dummy/config/routes.rb
|
982
|
+
- test/dummy/config/initializers/0_load_development_secrets.rb
|
983
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
984
|
+
- test/dummy/config/initializers/session_store.rb
|
985
|
+
- test/dummy/config/initializers/inflections.rb
|
986
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
987
|
+
- test/dummy/config/initializers/assets.rb
|
988
|
+
- test/dummy/config/initializers/mime_types.rb
|
989
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
990
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
991
|
+
- test/dummy/config/environment.rb
|
992
|
+
- test/dummy/config/database.yml
|
993
|
+
- test/dummy/Rakefile
|
994
|
+
- test/dummy/bin/bundle
|
995
|
+
- test/dummy/bin/rails
|
996
|
+
- test/dummy/bin/rake
|
997
|
+
- test/dummy/bin/setup
|
998
|
+
- test/dummy/public/422.html
|
999
|
+
- test/dummy/public/favicon.ico
|
1000
|
+
- test/dummy/public/404.html
|
1001
|
+
- test/dummy/public/500.html
|
1002
|
+
- test/dummy/app/helpers/application_helper.rb
|
1003
|
+
- test/dummy/app/assets/stylesheets/application.css
|
1004
|
+
- test/dummy/app/assets/javascripts/application.js
|
1005
|
+
- test/dummy/app/views/layouts/application.html.erb
|
1006
|
+
- test/dummy/app/controllers/application_controller.rb
|
1007
|
+
- test/dummy/db/seeds.rb
|
1008
|
+
- test/dummy/db/schema.rb
|
1009
|
+
- test/dummy/config.ru
|
1010
|
+
- test/controllers/deploys_controller_test.rb
|
1011
|
+
- test/controllers/stacks_controller_test.rb
|
1012
|
+
- test/controllers/status_controller_test.rb
|
1013
|
+
- test/controllers/api/deploys_controller_test.rb
|
1014
|
+
- test/controllers/api/locks_controller_test.rb
|
1015
|
+
- test/controllers/api/stacks_controller_test.rb
|
1016
|
+
- test/controllers/api/release_statuses_controller_test.rb
|
1017
|
+
- test/controllers/api/ccmenu_controller_test.rb
|
1018
|
+
- test/controllers/api/commits_controller_test.rb
|
1019
|
+
- test/controllers/api/outputs_controller_test.rb
|
1020
|
+
- test/controllers/api/hooks_controller_test.rb
|
1021
|
+
- test/controllers/api/pull_requests_controller_test.rb
|
1022
|
+
- test/controllers/api/tasks_controller_test.rb
|
1023
|
+
- test/controllers/api/base_controller_test.rb
|
1024
|
+
- test/controllers/commit_checks_controller_test.rb
|
1025
|
+
- test/controllers/release_statuses_controller_test.rb
|
1026
|
+
- test/controllers/webhooks_controller_test.rb
|
1027
|
+
- test/controllers/ccmenu_controller_test.rb
|
1028
|
+
- test/controllers/rollbacks_controller_test.rb
|
1029
|
+
- test/controllers/commits_controller_test.rb
|
1030
|
+
- test/controllers/github_authentication_controller_test.rb
|
1031
|
+
- test/controllers/pull_requests_controller_test.rb
|
1032
|
+
- test/controllers/tasks_controller_test.rb
|
1033
|
+
- test/controllers/merge_status_controller_test.rb
|
1034
|
+
- test/test_command_integration.rb
|
1035
|
+
- test/test_helper.rb
|
1036
|
+
- test/jobs/destroy_stack_job_test.rb
|
1037
|
+
- test/jobs/fetch_deployed_revision_job_test.rb
|
1038
|
+
- test/jobs/fetch_commit_stats_job_test.rb
|
1039
|
+
- test/jobs/merge_pull_requests_job_test.rb
|
1040
|
+
- test/jobs/update_github_last_deployed_ref_job_test.rb
|
1041
|
+
- test/jobs/cache_deploy_spec_job_test.rb
|
1042
|
+
- test/jobs/emit_event_job_test.rb
|
1043
|
+
- test/jobs/refresh_github_user_job_test.rb
|
1044
|
+
- test/jobs/chunk_rollup_job_test.rb
|
1045
|
+
- test/jobs/mark_deploy_healthy_job_test.rb
|
1046
|
+
- test/jobs/refresh_status_job_test.rb
|
1047
|
+
- test/jobs/purge_old_deliveries_job_test.rb
|
1048
|
+
- test/jobs/deliver_hook_job_test.rb
|
1049
|
+
- test/jobs/github_sync_job_test.rb
|
1050
|
+
- test/jobs/perform_task_job_test.rb
|
1051
|
+
- test/jobs/unique_job_test.rb
|
1052
|
+
- test/unit/environment_variables_test.rb
|
1053
|
+
- test/unit/commands_test.rb
|
1054
|
+
- test/unit/github_app_test.rb
|
1055
|
+
- test/unit/rollback_commands_test.rb
|
1056
|
+
- test/unit/command_test.rb
|
1057
|
+
- test/unit/shipit_test.rb
|
1058
|
+
- test/unit/line_buffer_test.rb
|
1059
|
+
- test/unit/csv_serializer_test.rb
|
1060
|
+
- test/unit/deploy_commands_test.rb
|
1061
|
+
- test/unit/variable_definition_test.rb
|
1062
|
+
- test/unit/github_url_helper_test.rb
|