VibecoderMcSwaggins commited on
Commit
6af8268
·
1 Parent(s): f882609

style: add pytest.mark.unit to test_models (CodeRabbit)

Browse files
Files changed (1) hide show
  1. tests/unit/utils/test_models.py +3 -0
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