Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/pbt/test_security_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import string

import pytest
import pytest; pytest.importorskip('hypothesis')
from hypothesis import given, settings, strategies as st, HealthCheck

# ---------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions tests/test_audit_remediation.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"""
from __future__ import annotations

import pytest; pytest.importorskip('fastapi'); pytest.importorskip('hypothesis')

import asyncio
import json
import os
Expand Down
1 change: 0 additions & 1 deletion tests/test_tg2_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"""
from __future__ import annotations

import pytest
import pytest; pytest.importorskip('hypothesis')
from hypothesis import given, settings
from hypothesis import strategies as st
Expand Down
Loading