Skip to content

Intermediate representation for layered draw #91

Intermediate representation for layered draw

Intermediate representation for layered draw #91

Triggered via pull request January 13, 2025 10:54
Status Success
Total duration 1m 24s
Artifacts

ci.yml

on: pull_request
Matrix: Linux C++
Matrix: Linux Python
Fit to window
Zoom out
Zoom in

Annotations

16 errors, 16 warnings, and 10 notices
Ruff (EXE001): python/graphs.py#L1
python/graphs.py:1:1: EXE001 Shebang is present but file is not executable
Ruff (D100): python/graphs.py#L1
python/graphs.py:1:1: D100 Missing docstring in public module
Ruff (D103): python/graphs.py#L25
python/graphs.py:25:6: D103 Missing docstring in public function
Ruff (D101): python/graphs.py#L34
python/graphs.py:34:7: D101 Missing docstring in public class
Ruff (D101): python/graphs.py#L58
python/graphs.py:58:7: D101 Missing docstring in public class
Ruff (D101): python/graphs.py#L118
python/graphs.py:118:7: D101 Missing docstring in public class
Ruff (D101): python/graphs.py#L148
python/graphs.py:148:7: D101 Missing docstring in public class
Ruff (D101): python/graphs.py#L178
python/graphs.py:178:7: D101 Missing docstring in public class
Ruff (D103): python/graphs.py#L206
python/graphs.py:206:5: D103 Missing docstring in public function
Ruff (D103): python/graphs.py#L324
python/graphs.py:324:5: D103 Missing docstring in public function
E0401: python/graphs.py#L29
Unable to import 'wcwidth'
E0606: python/graphs.py#L230
Possibly using variable 'scale_base' before assignment
E0606: python/graphs.py#L319
Possibly using variable 'strm' before assignment
E0401: python/tables.py#L27
Unable to import 'wcwidth'
Pylint
Process completed with exit code 30.
Linux C++ (ubuntu-20.04, clang++)
Process completed with exit code 254.
Linux Python (3.10)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (3.9)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Ruff
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (3.8)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (3.12)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (pypy3.9)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Pylint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
W0621: python/graphs.py#L656
Redefining name 'histogram' from outer scope (line 601)
W0621: python/graphs.py#L940
Redefining name 'function' from outer scope (line 979)
W0621: python/tables.py#L70
Redefining name 'array' from outer scope (line 196)
Linux Python (3.11)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (3.7)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (3.13)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (pypy3.8)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (pypy3.7)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Linux Python (pypy3.10)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
C0114: python/graphs.py#L1
Missing module docstring
C0116: python/graphs.py#L25
Missing function or method docstring
C0115: python/graphs.py#L34
Missing class docstring
C0115: python/graphs.py#L58
Missing class docstring
C0115: python/graphs.py#L118
Missing class docstring
C0115: python/graphs.py#L148
Missing class docstring
C0115: python/graphs.py#L178
Missing class docstring
C0116: python/graphs.py#L206
Missing function or method docstring
C1805: python/graphs.py#L271
"intpart == 0" can be simplified to "not intpart", if it is strictly an int, as 0 is falsey
C1805: python/graphs.py#L273
"intpart != 0" can be simplified to "intpart", if it is strictly an int, as 0 is falsey