Closed Reimirno closed 8 months ago
Coverage for unit tests for Python 3.11
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
16 | 0 :zzz: | 0 :x: | 0 :fire: | 0.758s :stopwatch: |
Coverage for unit tests for Python 3.10
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
16 | 0 :zzz: | 0 :x: | 0 :fire: | 5.769s :stopwatch: |
Coverage for unit tests for Python 3.12
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
16 | 0 :zzz: | 0 :x: | 0 :fire: | 0.810s :stopwatch: |
Coverage for e2e tests for Python 3.10
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
8 | 0 :zzz: | 0 :x: | 0 :fire: | 24.907s :stopwatch: |
Coverage for e2e tests for Python 3.11
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
8 | 0 :zzz: | 0 :x: | 0 :fire: | 31.898s :stopwatch: |
Coverage for e2e tests for Python 3.12
Tests | Skipped | Failures | Errors | Time |
---|---|---|---|---|
8 | 0 :zzz: | 0 :x: | 0 :fire: | 38.711s :stopwatch: |
This one is actually funny. We have
students = Student.query.filter(Student.email.in_(emails) & Student.exam_id == exam.id)
and this works fine with Sqlite3. But then for postgres you have to dostudents = Student.query.filter(Student.email.in_(emails) & (Student.exam_id == exam.id))
. Otherwise the&
get evaluated before==
.