Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The HPCC Systems Platform team has an automated test systems called OBT – Overnight Build and Test systems - and the Smoketest (see repos listed in the table below). Both were created more than 7 years ago and used Python 2.7 which version has not been whose version is no longer supported since the beginning of 2022. Therefore, we need to convert all upgrade the python version in both of them. A large part of this project is related to Smoketest where the scheduler and the worker are written in Python. In OBT there are , some log processing , and reporting tools are written in Python as well.

There is a tool called 2to3 which can do some conversion, but it is unable to handle all our implementations, so there needs to be some understanding is a need for some investigation and manual fixes too. Moreover, there are some duplicated functionalities implemented in those systems what that can be replaced by a common version. There are some dead (commented out, never called functions) and/or outdated code (like old base branch version related, e.g.: 6.x or 7.x) that can be removed as well. If a Python code is not unit testing ready, then at least it needs to be documented and if possible, change itchanged. Our code needs some cleaning as well.

...

  • All our Python code should run smoothly on the latest version.
  • Clean up the code, remove all dead and/or outdated parts.
  • Discover duplicated functionality, compile a list of them and give suggestions and code to common commonize them.
  • Create a list of all Python code which is not unit test enabled and if possible, make changes to it.

...