()
| 72 | |
| 73 | @pytest.fixture |
| 74 | def high_epss_score(): |
| 75 | vul = Vulnerability(vulnerability_id="VCID-HIGH-EPSS") |
| 76 | vul.save() |
| 77 | |
| 78 | severity = VulnerabilitySeverity.objects.create( |
| 79 | url="https://nvd.nist.gov/vuln/detail/CVE-xxxx-xxx3", |
| 80 | scoring_system=EPSS.identifier, |
| 81 | value=".9", |
| 82 | ) |
| 83 | vul.severities.add(severity) |
| 84 | |
| 85 | return vul.severities.all() |
| 86 | |
| 87 | |
| 88 | @pytest.fixture |
nothing calls this directly
no test coverage detected