Skip to content

Commit

Permalink
Renamed config array var
Browse files Browse the repository at this point in the history
  • Loading branch information
cepages committed Aug 13, 2024
1 parent d620cb9 commit f41ba11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ desc "Generates Swift source code and run its unit tests."
task :test_swift do
config_file_default = File.absolute_path("spec/fixtures/swift-tests.yml")
config_file_no_infer_types = File.absolute_path("spec/fixtures/swift-tests_with_no_infer_types.yml")
config_array = [config_file_default, config_file_no_infer_types]
config_file_array = [config_file_default, config_file_no_infer_types]
dotenv_file = File.absolute_path("spec/fixtures/.env.fruitloops")
config_array.each do |config_file|
config_file_array.each do |config_file|
with_temp_dir do |temp_dir|
puts "Current working directory: #{temp_dir}"
sh("ARKANA_RUNNING_CI_INTEGRATION_TESTS=true arkana --config-filepath #{config_file} --dotenv-filepath #{dotenv_file} --include-environments dev,staging")
Expand Down

0 comments on commit f41ba11

Please sign in to comment.