Skip to content

Commit 64e9d37

Browse files
improve: align package dependencies with README (#36)
* docs: add AGENTS.md for agent discoverability * improve: align package dependencies with README * style: auto-fix ruff import sorting (I001)
1 parent d7dbd7e commit 64e9d37

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ dependencies = [
1515
"click>=8.1",
1616
"rich>=13.0",
1717
"pyyaml>=6.0",
18+
"tomli>=2.0",
19+
"jinja2>=3.1",
1820
]
1921
keywords = ["infrastructure", "terraform", "cloudformation", "pulumi", "cost", "diff", "cli"]
2022
classifiers = [

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"""Test configuration - mock license checks so tests run without a license."""
22

3-
import pytest
43
import sys
54
from unittest.mock import MagicMock
65

6+
import pytest
7+
78
# Replace revenueholdings_license with a mock BEFORE any src imports resolve it
89
_mock_rl = MagicMock()
910
_mock_rl.require_license = MagicMock(return_value=None)

0 commit comments

Comments
 (0)