aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/tests/conftest.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-20 20:17:25 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-20 20:17:25 +0100
commitff1aa3aa113e507f870eba4c96099946f154fb22 (patch)
treedb14562172d6936bdcc993b6af45ccbd2f2d8d89 /pyblackbird_cc/resources/tests/conftest.py
parentd048429fefaa92c7600b46fec9d38e1e9e862457 (diff)
wip:
- Passing test for raw ORM handling to find snapshot files from an object - Quietens down pytest output
Diffstat (limited to 'pyblackbird_cc/resources/tests/conftest.py')
-rw-r--r--pyblackbird_cc/resources/tests/conftest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyblackbird_cc/resources/tests/conftest.py b/pyblackbird_cc/resources/tests/conftest.py
index a5c1e41..0d1ed87 100644
--- a/pyblackbird_cc/resources/tests/conftest.py
+++ b/pyblackbird_cc/resources/tests/conftest.py
@@ -1,9 +1,8 @@
import pytest
-from pyblackbird_cc.resources.factories import ResourceModelFactory, PDFPageSnapshotModelFactory
+from pyblackbird_cc.resources.factories import ResourceModelFactory
@pytest.fixture()
def resources():
- snapshots = PDFPageSnapshotModelFactory.create_batch(3)
return ResourceModelFactory.create_batch(5)