()
| 87 | |
| 88 | @pytest.fixture |
| 89 | def low_epss_score(): |
| 90 | vul = Vulnerability(vulnerability_id="VCID-LOW-EPSS") |
| 91 | vul.save() |
| 92 | |
| 93 | severity = VulnerabilitySeverity.objects.create( |
| 94 | url="https://nvd.nist.gov/vuln/detail/CVE-xxxx-xxx4", |
| 95 | scoring_system=EPSS.identifier, |
| 96 | value=".3", |
| 97 | ) |
| 98 | vul.severities.add(severity) |
| 99 | |
| 100 | return vul.severities.all() |
| 101 | |
| 102 | |
| 103 | @pytest.mark.django_db |
nothing calls this directly
no test coverage detected