History log of /openbmc/openbmc-test-automation/lib/tally_sheet.py (Results 1 – 12 of 12)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3996704e 16-Feb-2023 George Keishing <gkeishin@in.ibm.com>

Pylint warning Line too long fix

Changes:
- Fix 0301: Line too long directives in the code

Tested:
- python3 -m pylint lib/tally_sheet.py

Change-Id: I0065779bc5abe00f26a9aa81dd1ce2d1fce753

Pylint warning Line too long fix

Changes:
- Fix 0301: Line too long directives in the code

Tested:
- python3 -m pylint lib/tally_sheet.py

Change-Id: I0065779bc5abe00f26a9aa81dd1ce2d1fce753bb
Signed-off-by: George Keishing <gkeishin@in.ibm.com>

show more ...


# 20f38712 08-Dec-2022 Patrick Williams <patrick@stwcx.xyz>

black: re-format

black and isort are enabled in the openbmc-build-scripts on Python files
to have a consistent formatting. Re-run the formatter on the whole
repository.

Signed-off-by: Patrick Will

black: re-format

black and isort are enabled in the openbmc-build-scripts on Python files
to have a consistent formatting. Re-run the formatter on the whole
repository.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I944f1915ece753f72a3fa654902d445a9749d0f9

show more ...


# e635ddc0 08-Dec-2022 George Keishing <gkeishin@in.ibm.com>

Revert "black: re-format"

This reverts commit 5731818de0ce446ceaafc7e75ae39da1b69942ae.

Signed-off-by: George Keishing <gkeishin@in.ibm.com>
Change-Id: Ie61cdc8c7f2825b0d9d66be87a6a3a058de2b372


# 5731818d 08-Dec-2022 Patrick Williams <patrick@stwcx.xyz>

black: re-format

black and isort are enabled in the openbmc-build-scripts on Python files
to have a consistent formatting. Re-run the formatter on the whole
repository.

Change-Id: If1010ead857d413

black: re-format

black and isort are enabled in the openbmc-build-scripts on Python files
to have a consistent formatting. Re-run the formatter on the whole
repository.

Change-Id: If1010ead857d41364c024bf8145a979a9377d382
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>

show more ...


Revision tags: robotframework-requests
# e7e9171e 03-Sep-2021 George Keishing <gkeishin@in.ibm.com>

Update python code for python 3.8 or higher compatibility

Changes:
- Update shebang directive to use python3 explicitly.
- remove preexec_fn feature which is deprecated in

Update python code for python 3.8 or higher compatibility

Changes:
- Update shebang directive to use python3 explicitly.
- remove preexec_fn feature which is deprecated in higher
python version 3.8 and above.
- bufsize fix, from documentation bufsize 1 means line buffered
(only usable if universal_newlines=True i.e., in a text mode)
refer: https://docs.python.org/3/library/subprocess.html
- Fix SyntaxWarning: "is" with "=="

Change-Id: Ib96c1ba8c2327d6774d0d731b48ca7e61a4a297a
Signed-off-by: George Keishing <gkeishin@in.ibm.com>

show more ...


Revision tags: v2.10-Hardknott, v2.8.0-stable
# 410b1787 22-Oct-2019 Michael Walsh <micwalsh@us.ibm.com>

Change several python and robot files to 110 chars

Taking advantage of current team limit of 110 chars.

Change-Id: If7ab51fe894889967b8c8bb2f2fa4664f01117d5
Signed-off-by: Micha

Change several python and robot files to 110 chars

Taking advantage of current team limit of 110 chars.

Change-Id: If7ab51fe894889967b8c8bb2f2fa4664f01117d5
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>

show more ...


# 5f4bce80 16-Jul-2019 Michael Walsh <micwalsh@us.ibm.com>

tally_sheet: no duplicates

- In add_row method, added new code to forbid adding entries that have already
been added.
- Also in sprint_report method, added support for empty tally

tally_sheet: no duplicates

- In add_row method, added new code to forbid adding entries that have already
been added.
- Also in sprint_report method, added support for empty tally sheet.

Change-Id: I2c64430099bf5f5d34abfbfbd153bdd135bf2ed0
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>

show more ...


Revision tags: v2.7-warrior-stable, v2.6-thud-stable, v2.2-stable, v2.1-stable
# 004ad3c9 11-Jun-2018 Joy Onyerikwu <onyekachukwu.joy.onyerikwu@ibm.com>

Formatted python files to follow PEP 8 python code standards.

- Changed the python files in the openbmc-test-automation
directory to conform to python code style standards with

Formatted python files to follow PEP 8 python code standards.

- Changed the python files in the openbmc-test-automation
directory to conform to python code style standards with
the exception of E402 and E501.
- Resolves openbmc/openbmc-test-automation#1308

Change-Id: I109995c2d248f5a6bb2c0e3c76a6144c8f3aac2e
Signed-off-by: Joy Onyerikwu <onyekachukwu.joy.onyerikwu@ibm.com>
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>

show more ...


Revision tags: v2.0-stable
# 86f029f0 27-Mar-2018 Michael Walsh <micwalsh@us.ibm.com>

tally_sheet.py::sprint_report increased "Boot Type" field width

- There are now boot type names that exceed the old width of 30.

Change-Id: I1b6d7b3e27c9c0ee917bf5ff96400d1249674e93

tally_sheet.py::sprint_report increased "Boot Type" field width

- There are now boot type names that exceed the old width of 30.

Change-Id: I1b6d7b3e27c9c0ee917bf5ff96400d1249674e93
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>

show more ...


# 096cd565 26-Mar-2018 Gunnar Mills <gmills@us.ibm.com>

Fixed PEP 8 style using autopep8

Used autopep8 to correct styling.
Ran autopep8 on openbmc-test-automation, autopep8 is not
able to fix all styling issues. There is still around

Fixed PEP 8 style using autopep8

Used autopep8 to correct styling.
Ran autopep8 on openbmc-test-automation, autopep8 is not
able to fix all styling issues. There is still around
1000 styling violations in openbmc-test-automation.
More information on autopep8 can be found here,
https://pypi.python.org/pypi/autopep8

Change-Id: Iddc131da1d74d978eb3dd0fdd6ce5d0a0e49b0f8
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>

show more ...


# d690150c 14-Nov-2017 Michael Walsh <micwalsh@us.ibm.com>

Remove hashtag lines from all .py files.

Change-Id: Ib2b52f6ff71c8f553e0cfb1936c8e0917e70c619
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>


# fefcbcae 11-Nov-2016 Michael Walsh <micwalsh@us.ibm.com>

Adding new module: tally_sheet.py

This module creates "tally sheets" such as this:

Boot Type Total Pass Fail
------------------------------ ----- ---- ----

Adding new module: tally_sheet.py

This module creates "tally sheets" such as this:

Boot Type Total Pass Fail
------------------------------ ----- ---- ----
BMC Power On 0 0 0
BMC Power Off 3 3 0
==============================================
Totals 3 3 0

Change-Id: I1835c2fb5270cb32ee4db36e2388be766f4f99f3
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>

show more ...