Merge branch 'chiaki_dev' into zemal_dev

* chiaki_dev:
  fix ci
  Add submission module

# Conflicts:
#	requirements.txt
This commit is contained in:
zemal
2017-05-09 14:41:26 +08:00
19 changed files with 372 additions and 2 deletions

7
submission/tasks.py Normal file
View File

@@ -0,0 +1,7 @@
from celery import shared_task
from judge.tasks import JudgeDispatcher
@shared_task
def _judge(submission_obj, problem_obj):
return JudgeDispatcher(submission_obj, problem_obj).judge()