Skip to content

Commit

Permalink
fixed lcm.rake file
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek committed Jul 9, 2018
1 parent 4c2a94c commit 4aa3c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lcm.rake
Expand Up @@ -92,7 +92,7 @@ namespace :test do
namespace :integration do
desc 'Run integration tests in Docker'
task :docker do
system("docker-compose -f docker-compose.lcm.yml up --no-recreate --remove-orphans --abort-on-container-exit appstore localstack")
system('docker-compose -f docker-compose.lcm.yml up --force-recreate --abort-on-container-exit appstore')

# TODO: use exit-code-from after update to docker-compose >= 1.12
# system('docker-compose up --exit-code-from appstore') ||
Expand All @@ -103,7 +103,7 @@ namespace :test do
namespace :load do
desc 'Run load tests in Docker'
task :docker do
system("docker-compose -f docker-compose.lcm.yml run --rm --remove-orphans --abort-on-container-exit appstore bundle exec rake -f lcm.rake test:load")
system('docker-compose -f docker-compose.lcm.yml run --rm appstore bundle exec rake -f lcm.rake test:load')

system(check_exit_code) || fail('Test execution failed!')
end
Expand Down
3 changes: 0 additions & 3 deletions spec/lcm/load/lcm_load_spec.rb
Expand Up @@ -3,9 +3,6 @@
require 'tempfile'
require 'csv'

require_relative '../../apps/release_brick/main'
require_relative '../../apps/provisioning_brick/main'
require_relative '../../apps/rollout_brick/main'
require_relative '../integration/support/constants'
require_relative '../integration/support/configuration_helper'
require_relative '../integration/shared_examples_for_synchronization_bricks'
Expand Down

0 comments on commit 4aa3c82

Please sign in to comment.