-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into frontend-tests
- Loading branch information
Showing
66 changed files
with
1,630 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
backend/pigeonhole/apps/projects/migrations/0002_project_test_dockerfile.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.13 on 2024-05-19 11:35 | ||
|
||
import backend.pigeonhole.apps.projects.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('projects', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='project', | ||
name='test_dockerfile', | ||
field=models.FileField(blank=True, null=True, | ||
upload_to=backend.pigeonhole.apps.projects.models.get_upload_to), | ||
), | ||
] |
25 changes: 25 additions & 0 deletions
25
backend/pigeonhole/apps/projects/migrations/0003_alter_project_test_dockerfile_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.13 on 2024-05-19 16:38 | ||
|
||
import backend.pigeonhole.apps.projects.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('projects', '0002_project_test_dockerfile'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='project', | ||
name='test_dockerfile', | ||
field=models.FileField(blank=True, null=True, | ||
upload_to=backend.pigeonhole.apps.projects.models.dockerfile_path), | ||
), | ||
migrations.AlterField( | ||
model_name='project', | ||
name='test_files', | ||
field=models.FileField(blank=True, null=True, | ||
upload_to=backend.pigeonhole.apps.projects.models.testfile_path), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
backend/pigeonhole/apps/projects/migrations/0003_project_test_entrypoint.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.11 on 2024-05-19 14:55 | ||
|
||
import backend.pigeonhole.apps.projects.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('projects', '0002_project_test_dockerfile'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='project', | ||
name='test_entrypoint', | ||
field=models.FileField(blank=True, null=True, | ||
upload_to=backend.pigeonhole.apps.projects.models.get_upload_to), | ||
), | ||
] |
14 changes: 14 additions & 0 deletions
14
backend/pigeonhole/apps/projects/migrations/0004_merge_20240519_1640.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Generated by Django 4.2.13 on 2024-05-19 16:40 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('projects', '0003_alter_project_test_dockerfile_and_more'), | ||
('projects', '0003_project_test_entrypoint'), | ||
] | ||
|
||
operations = [ | ||
] |
30 changes: 30 additions & 0 deletions
30
backend/pigeonhole/apps/projects/migrations/0005_remove_project_test_dockerfile_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by Django 4.2.13 on 2024-05-20 18:31 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('projects', '0004_merge_20240519_1640'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='test_dockerfile', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='test_entrypoint', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='test_files', | ||
), | ||
migrations.AddField( | ||
model_name='project', | ||
name='test_docker_image', | ||
field=models.CharField(blank=True, max_length=1024, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
backend/pigeonhole/apps/submissions/migrations/0005_submissions_eval_result.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.11 on 2024-05-05 02:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('submissions', '0004_remove_submissions_file_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='submissions', | ||
name='eval_result', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
.../pigeonhole/apps/submissions/migrations/0005_submissions_feedback_simple_test_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.13 on 2024-05-22 15:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('submissions', '0004_remove_submissions_file_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='submissions', | ||
name='feedback_simple_test', | ||
field=models.JSONField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='submissions', | ||
name='output_simple_test', | ||
field=models.BooleanField(blank=True, default=False), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
backend/pigeonhole/apps/submissions/migrations/0006_submissions_eval_output.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.13 on 2024-05-19 11:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('submissions', '0005_submissions_eval_result'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='submissions', | ||
name='eval_output', | ||
field=models.TextField(null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
backend/pigeonhole/apps/submissions/migrations/0007_alter_submissions_eval_result.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.11 on 2024-05-23 02:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('submissions', '0006_submissions_eval_output'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='submissions', | ||
name='eval_result', | ||
field=models.BooleanField(default=None, null=True), | ||
), | ||
] |
14 changes: 14 additions & 0 deletions
14
backend/pigeonhole/apps/submissions/migrations/0008_merge_20240523_0823.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Generated by Django 4.2.13 on 2024-05-23 08:23 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('submissions', '0005_submissions_feedback_simple_test_and_more'), | ||
('submissions', '0007_alter_submissions_eval_result'), | ||
] | ||
|
||
operations = [ | ||
] |
Oops, something went wrong.