Spaces:
Running
Running
Commit
·
6af8268
1
Parent(s):
f882609
style: add pytest.mark.unit to test_models (CodeRabbit)
Browse files
tests/unit/utils/test_models.py
CHANGED
|
@@ -1,8 +1,11 @@
|
|
| 1 |
"""Unit tests for data models."""
|
| 2 |
|
|
|
|
|
|
|
| 3 |
from src.utils.models import ReportSection, ResearchReport
|
| 4 |
|
| 5 |
|
|
|
|
| 6 |
class TestResearchReport:
|
| 7 |
"""Tests for ResearchReport model."""
|
| 8 |
|
|
|
|
| 1 |
"""Unit tests for data models."""
|
| 2 |
|
| 3 |
+
import pytest
|
| 4 |
+
|
| 5 |
from src.utils.models import ReportSection, ResearchReport
|
| 6 |
|
| 7 |
|
| 8 |
+
@pytest.mark.unit
|
| 9 |
class TestResearchReport:
|
| 10 |
"""Tests for ResearchReport model."""
|
| 11 |
|