Copy secrets so travis does not fail
This commit is contained in:
@@ -4,4 +4,6 @@ language: ruby
|
||||
cache: bundler
|
||||
rvm:
|
||||
- 2.4.4
|
||||
before_install: gem install bundler -v 2.0.1
|
||||
before_install:
|
||||
- sudo cp config/secrets.yml.example config/secrets.yml
|
||||
- gem install bundler -v 2.0.1
|
||||
|
||||
@@ -15,4 +15,4 @@ test:
|
||||
aws_region: eu-west-1
|
||||
aws_queue_suffix: -test
|
||||
application_name: analyzer_orchestrator_test
|
||||
aws_iterations_bucket: CHANGE_ME
|
||||
aws_iterations_bucket: test-exercism-iterations
|
||||
|
||||
@@ -9,7 +9,7 @@ module Orchestrator
|
||||
iteration_id = SecureRandom.uuid
|
||||
analysis = {"foo" => "bar"}
|
||||
|
||||
s3_url = "s3://exercism-iterations/test/iterations/#{iteration_id}"
|
||||
s3_url = "s3://test-exercism-iterations/test/iterations/#{iteration_id}"
|
||||
|
||||
data_path = File.expand_path(File.dirname(__FILE__) + "/../tmp/analysis_runtime/ruby/runs/iteration_#{Time.now.to_i}_#{iteration_id}/iteration/")
|
||||
FileUtils.mkdir_p(data_path)
|
||||
@@ -31,7 +31,7 @@ module Orchestrator
|
||||
def test_calls_system_and_propono_with_the_correct_params_when_fails
|
||||
Timecop.freeze do
|
||||
iteration_id = SecureRandom.uuid
|
||||
s3_url = "s3://exercism-iterations/test/iterations/#{iteration_id}"
|
||||
s3_url = "s3://test-exercism-iterations/test/iterations/#{iteration_id}"
|
||||
|
||||
propono = mock
|
||||
propono.expects(:publish).with(:iteration_analyzed, {
|
||||
|
||||
Reference in New Issue
Block a user