Skip to content
Snippets Groups Projects
Commit 80488336 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

bugfix (encore)

parent 3b27e0c3
No related branches found
No related tags found
3 merge requests!333get all the new changes from master into the branch,!332merge master changes in to branch,!331missed a bit
Pipeline #68774 passed
......@@ -13,7 +13,7 @@ DATABASES = {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'atdb_admin',
'PASSWORD': 'atdb123',
'NAME': 'atdb_ldv_4jan2024',
'NAME': 'atdb_ldv_12jan2024',
'HOST': 'localhost',
'PORT': '5432',
},
......
......@@ -125,6 +125,15 @@ def calculate_qualities(task, tasks_for_this_sasid, quality_thresholds):
# store the result in task.calculated_qualities (not yet saved in the database)
qualities['per_sasid'] = calculated_quality_sasid
# save the new sas_id quality for all the other tasks (siblings) of this sas_id as well
for other_task in tasks_for_this_sasid:
# the task for which the quality is (re)calculated is saved later, but do save all its siblings
if other_task.id != task.id:
calc_q = other_task.calculated_qualities
calc_q['per_sasid'] = calculated_quality_sasid
other_task.calculated_qualities = calc_q
other_task.save()
except Exception as error:
logger.error(error)
......
......@@ -31,7 +31,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 9 Jan 2024
<p class="footer"> Version 12 Jan 2024
</div>
{% include 'taskdatabase/refresh.html' %}
......
......@@ -70,11 +70,12 @@ class TestCalculatedQualities(TestCase):
# only 4 of the 7 tasks should now have calculated_qualities
count = 0
for task in Task.objects.all():
tasks = Task.objects.all()
for task in tasks:
if task.calculated_qualities['per_sasid']:
count += 1
self.assertEqual(count,5)
self.assertEqual(count,6)
def test_calculated_qualities(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment