updated seeds for execution environments

This commit is contained in:
Hauke Klement
2015-03-09 18:01:33 +01:00
parent a62253e21c
commit 1fe56f8ea6

View File

@ -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}'