Revert "DEV: Lint official plugins in CI (#6519)"

This reverts commit 093cab2db04675dc9f9ccc52a3ceee5f85156f45.
This commit is contained in:
David Taylor 2018-10-22 22:30:33 +01:00
parent 093cab2db0
commit bafe3cd99a
2 changed files with 4 additions and 6 deletions

View File

@ -76,7 +76,6 @@ script:
if [ '$RUN_LINT' == '1' ]; then
bundle exec rubocop --parallel && \
bundle exec danger && \
yarn prettier --list-different "plugins/**/*.scss" "plugins/**/*.es6" \
yarn eslint --ext .es6 app/assets/javascripts && \
yarn eslint --ext .es6 test/javascripts && \
yarn eslint --ext .es6 plugins/**/assets/javascripts && \

View File

@ -38,11 +38,6 @@ desc 'Run all tests (JS and code in a standalone environment)'
task 'docker:test' do
begin
@good = true
if ENV["INSTALL_OFFICIAL_PLUGINS"]
@good &&= run_or_fail("bundle exec rake plugin:install_all_official")
end
unless ENV['SKIP_LINT']
puts "travis_fold:start:lint" if ENV["TRAVIS"]
puts "Running linters/prettyfiers"
@ -96,6 +91,10 @@ task 'docker:test' do
@good &&= run_or_fail("bundle exec rake db:create")
if ENV["INSTALL_OFFICIAL_PLUGINS"]
@good &&= run_or_fail("bundle exec rake plugin:install_all_official")
end
if ENV["SKIP_PLUGINS"]
@good &&= run_or_fail("bundle exec rake db:migrate")
else