File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- ![ PyPI] ( https://img.shields.io/pypi/v/logeye?cachebust=1774375071 )
1+ ![ PyPI] ( https://img.shields.io/pypi/v/logeye?cachebust=1774629933 )
22![ Python] ( https://img.shields.io/pypi/pyversions/logeye )
33![ License] ( https://img.shields.io/github/license/MattFor/LogEye )
44
@@ -708,5 +708,5 @@ MIT License © 2026
708708
709709See [ LICENSE] ( LICENSE ) for details.
710710
711- Version 1.4 .0
711+ Version 1.5 .0
712712
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " logeye"
7- version = " 1.4 .0"
7+ version = " 1.5 .0"
88description = " Frictionless runtime logging for Python variables and functions"
99readme = " README.md"
1010requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -143,9 +143,9 @@ if [[ "$GIT_ONLY" == false ]]; then
143143 TEST_OUTPUT=$( pytest --maxfail=0 --disable-warnings -q 2>&1 || true)
144144 echo " $TEST_OUTPUT "
145145
146- PASSED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= passed)' | head -1)
147- FAILED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= failed)' | head -1)
148- XPASSED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= xpassed)' | head -1)
146+ PASSED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= passed)' | head -1 || true )
147+ FAILED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= failed)' | head -1 || true )
148+ XPASSED=$( echo " $TEST_OUTPUT " | grep -oP ' \d+(?= xpassed)' | head -1 || true )
149149
150150 PASSED=${PASSED:- 0}
151151 FAILED=${FAILED:- 0}
You can’t perform that action at this time.
0 commit comments