diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76b5cb0..55b3de4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: CI +name: ci on: push: @@ -40,7 +40,7 @@ jobs: - name: Run tests with pytest run: | - pytest --cov=cflan --cov-report=xml --cov-report=term-missing + pytest --cov --cov-report=xml --cov-report=term-missing - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 diff --git a/pyproject.toml b/pyproject.toml index 23fc715..95200e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -110,6 +110,7 @@ omit = [ "setup.py", ".venv/*", "venv/*", + "install.py", ] [tool.coverage.report] @@ -122,4 +123,4 @@ exclude_lines = [ "if TYPE_CHECKING:", ] show_missing = true -fail_under = 80 +fail_under = 70