diff options
author | Vratko Polak <vrpolak@cisco.com> | 2019-02-26 15:46:02 +0100 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2019-03-04 14:16:44 +0000 |
commit | da799981f5373b09398319df12e77e2efc75caa6 (patch) | |
tree | c8e8fd77fe0ecf2fca6833c3bd21bcee30f70873 /docs | |
parent | 89e6be275715aefa8473835eb78eed309f37f2ee (diff) |
Rename to Constants.py
Motivation: Make the constants available also for Robot.
Restraint: Robotframework user guide says:
Because variable files are always imported using a file system path,
creating them as classes has some restrictions:
Python classes must have the same name as the module they are located.
Change-Id: I638ef3fe045db132e366de2e2699638b8637e45e
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/test_code_guidelines.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/test_code_guidelines.rst b/docs/test_code_guidelines.rst index b455c924c4..24544b93de 100644 --- a/docs/test_code_guidelines.rst +++ b/docs/test_code_guidelines.rst @@ -284,7 +284,7 @@ and unrelated ones such as PAL) if there are any (in addition to library ones). + It is NOT RECOMMENDED to use hard-coded constants (e.g. numbers, paths without any description). It is RECOMMENDED to use - configuration file(s), like /csit/resources/libraries/python/constants.py, + configuration file(s), like /csit/resources/libraries/python/Constants.py, with appropriate comments. + The code SHALL log at the lowest possible level of implementation, |