From 1fe56f8ea669a8881b8e224291a9486e691236a0 Mon Sep 17 00:00:00 2001 From: Hauke Klement Date: Mon, 9 Mar 2015 18:01:33 +0100 Subject: [PATCH] updated seeds for execution environments --- spec/factories/execution_environment.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/factories/execution_environment.rb b/spec/factories/execution_environment.rb index 7c9344a4..b47e2e03 100644 --- a/spec/factories/execution_environment.rb +++ b/spec/factories/execution_environment.rb @@ -64,12 +64,12 @@ FactoryGirl.define do created_by_teacher docker_image 'hklement/ubuntu-python:latest' help - name 'Python 2.7' + name 'Python 3.4' permitted_execution_time 10.seconds pool_size 0 - run_command 'python %{filename}' + run_command 'python3 %{filename}' singleton_execution_environment - test_command 'python -m unittest --verbose %{module_name}' + test_command 'python3 -m unittest --verbose %{module_name}' testing_framework 'PyUnitAdapter' end @@ -77,7 +77,7 @@ FactoryGirl.define do created_by_teacher docker_image 'hklement/ubuntu-ruby:latest' help - name 'Ruby 2.1' + name 'Ruby 2.2' permitted_execution_time 10.seconds pool_size 0 run_command 'ruby %{filename}'