Skip to content

Commit

Permalink
Minor: remove rake test:core-fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelandis committed Nov 29, 2017
1 parent dd11763 commit 5c5619f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
8 changes: 1 addition & 7 deletions ci/unit_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@ export CI=true

SELECTED_TEST_SUITE=$1

if [[ $SELECTED_TEST_SUITE == $"core-fail-fast" ]]; then
echo "Running Java and Ruby unit tests, but will fail fast"
echo "Running test:install-core"
rake test:install-core
echo "Running test:core-fail-fast"
rake test:core-fail-fast
elif [[ $SELECTED_TEST_SUITE == $"java" ]]; then
if [[ $SELECTED_TEST_SUITE == $"java" ]]; then
echo "Running Java Tests"
./gradlew javaTests --console=plain
elif [[ $SELECTED_TEST_SUITE == $"ruby" ]]; then
Expand Down
5 changes: 0 additions & 5 deletions rakelib/test.rake
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ namespace "test" do
exit 1 unless system(*(default_spec_command.concat(["--tag", "~stress_test"])))
end

desc "run all core specs in fail-fast mode"
task "core-fail-fast" do
exit 1 unless system(*(default_spec_command.concat(["--fail-fast"])))
end

desc "run all installed plugins specs"
task "plugins" => "bootstrap" do
plugins_to_exclude = ENV.fetch("EXCLUDE_PLUGIN", "").split(",")
Expand Down

0 comments on commit 5c5619f

Please sign in to comment.