Skip to content

Commit 342fe93

Browse files
committed
incresing coverage
1 parent 58b8f7b commit 342fe93

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.coverage

0 Bytes
Binary file not shown.

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
2828
- name: Run tests with coverage
2929
run: |
30-
pytest --cov=devolv --cov-report=term --cov-fail-under=90
30+
pytest --cov=devolv --cov-report=term --cov-fail-under=95

devolv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.22"
1+
__version__ = "0.1.23"

tests/test_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ def test_cli_folder_all_valid(tmp_path):
116116
file.write_text('{"Version":"2012-10-17","Statement":[]}')
117117
result = runner.invoke(app, ["validate", str(tmp_path)])
118118
assert result.exit_code == 0
119-
assert "All policies passed validation" in result.output
119+
assert "No high-risk findings" in result.output
120+
120121

121122
def test_cli_json_output(tmp_path):
122123
file = tmp_path / "bad.json"

0 commit comments

Comments
 (0)