Skip to content

Commit 2527f90

Browse files
committed
2.8.5
1 parent 09728f0 commit 2527f90

File tree

3 files changed

+5
-24
lines changed

3 files changed

+5
-24
lines changed

backend/ibutsu_server/openapi/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
description: A system to store and query test results
44
title: Ibutsu API
5-
version: 2.8.3
5+
version: 2.8.5
66
servers:
77
- url: /api
88
tags:

backend/pyproject.toml

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
version = "2.8.3"
2+
version = "2.8.5"
33
name = "ibutsu_server"
44
description = "A system to store and query test results and artifacts"
55
authors = [
@@ -246,34 +246,15 @@ omit = [
246246
precision = 2
247247
skip_empty = true
248248
exclude_lines = [
249-
# Pragmas and docstrings
250249
"pragma: no cover",
251250
"def __repr__",
252-
# Defensive programming patterns
253251
"raise AssertionError",
254252
"raise NotImplementedError",
255-
"assert False",
256-
# Type checking blocks
253+
"if __name__ == .__main__.:",
257254
"if TYPE_CHECKING:",
258-
"if typing.TYPE_CHECKING:",
259-
# Abstract methods
260255
"@abstractmethod",
261-
"@abc.abstractmethod",
262-
# Main guard
263-
"if __name__ == .__main__.:",
264-
# Import statements (allow leading whitespace)
265-
"^\\s*from .+ import .+$",
266-
"^\\s*import .+$",
267-
# Pass statements
268-
"^\\s*pass\\s*$",
269-
# Ellipsis (standalone only, not in strings)
270-
"^\\s*\\.\\.\\.\\s*$",
271-
# Protocol and overload definitions
272-
"@overload",
273-
"@typing.overload",
274-
# Debug-only code
275-
"if.*__debug__:",
276256
]
257+
# fail_under removed - coverage thresholds managed by codecov.yml
277258

278259
[tool.coverage.xml]
279260
output = "coverage.xml"

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ibutsu-frontend",
3-
"version": "2.8.3",
3+
"version": "2.8.5",
44
"private": true,
55
"dependencies": {
66
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",

0 commit comments

Comments
 (0)