Sandra M Castro | 030ac61dccdSmall fix to setUp of tests. | Small fix to setUp of tests. | | |
Sandra M Castro | ed1f53d4a74M | Merge branch 'master' into CAS-13798 | | CAS-13798 |
Ville Suoranta | e1110014e14M | Merge pull request #557 in CASA/casa6 from CAS-13779 to master* commit '0b4bdf42531f451024e633a779be3be9e398d078':
Remove 'modimage' parameter | | CAS-13779 |
Ville Suoranta | 0b4bdf42531M | Merge branch 'master' into CAS-13779 | | CAS-13779 |
Sandra Castro | 4f17dac11b3M | Merge pull request #556 in CASA/casa6 from CAS-13780 to master* commit '55baf8f44848a892e6950bcb1220d4421b779358': (41 commits)
CAS-13780 update single dish related entries in component_to_test_map.json
CAS-13780 more documentation fix for D400
CAS-13780 more documentation fix for D208
CAS-13780 documentation fix (D205, D208, D400, D401, D403)
CAS-13780 documentation fix (D300)
CAS-13780 documentation fix (D211)
CAS-13780 documentation fix (... | | CAS-13780 |
Sandra M Castro | c35edf2de71 | Removed casa5 code from task_flagmanager.py | | |
Takeshi Nakazato | 55baf8f4484M | Merge branch 'master' into CAS-13780 | | CAS-13780 |
Sandra M Castro | 6415ee9f6fe | Replaced lociteritems and lociterkeys functions with dict.items and dict.keys | | |
Sandra M Castro | 78cbbf8be67 | Replaced lociteritems function with dict.items() | | |
Sandra M Castro | 4398d19bc68 | Fixed deprecation warning on == sign in flagdata task.More cleanup of test_task_flagdata | | |
Sandra M Castro | 3df1b9aa1e6 | Removed lociteritems function that was only needed for python 2/3 compatibility andreplaced calls with dict.items().
More formatting in test_flaghelper.py to become more pythonic. | | |
Sandra Castro | 77a6570e929M | Merge pull request #555 in CASA/casa6 from CAS-13770 to master* commit '2666d390b997bd39fa71de0489f30ccebf0d6eee':
Update to parse depending on order of tests input
Update to parse testlist. Update to generate test list from testType as component | | CAS-13770 |
Takeshi Nakazato | e3bd68800e8 | CAS-13780 update single dish related entries in component_to_test_map.json | | CAS-13780 |
Takeshi Nakazato | 267b03e8fd5 | CAS-13780 more documentation fix for D400 | | CAS-13780 |
Takeshi Nakazato | 029f378f204 | CAS-13780 more documentation fix for D208 | | CAS-13780 |
Takeshi Nakazato | d90180b4cb7 | CAS-13780 documentation fix (D205, D208, D400, D401, D403)Some of those documentation error reports are not fixed. | | CAS-13780 |
Takeshi Nakazato | 81a7d528896 | CAS-13780 documentation fix (D300) | | CAS-13780 |
Takeshi Nakazato | 35bd80880ff | CAS-13780 documentation fix (D211) | | CAS-13780 |
Takeshi Nakazato | c6e5d5e9da7 | CAS-13780 documentation fix (D210) | | CAS-13780 |
Takeshi Nakazato | 9c3f58c2d32 | CAS-13780 documentation fix (D208) | | CAS-13780 |
Takeshi Nakazato | 3913eefb527 | CAS-13780 documentation fix (D204) | | CAS-13780 |
Takeshi Nakazato | 71c1f33816b | CAS-13780 documentation fix (D202) | | CAS-13780 |
Takeshi Nakazato | 3de89b6bc64 | CAS-13780 documentation fix (D200)Note that this change causes additional E501 error. | | CAS-13780 |
Takeshi Nakazato | a042d413533 | CAS-13780 manual fix several code style issues | | CAS-13780 |
Takeshi Nakazato | d8b56bdd0d3 | CAS-13780 manually fix codestyle of sdutil.py and sdbeamutil.py | | CAS-13780 |
Takeshi Nakazato | c0f08784ec8 | CAS-13780 manually fix jyperk.py and its test code | | CAS-13780 |
Takeshi Nakazato | a01f2f00aed | CAS-13780 fix invalid backslash (W605) | | CAS-13780 |
Takeshi Nakazato | 7106780e730 | CAS-13780 fix invalid backslash (W605) as well as regex bug | | CAS-13780 |
Takeshi Nakazato | b331669e025 | CAS-13780 revisited E501 | | CAS-13780 |
Takeshi Nakazato | c173c50a158 | CAS-13780 call super without argumentsit is possible because we get rid of python 2.7 support. | | CAS-13780 |
Takeshi Nakazato | 84416aebb00 | CAS-13780 fix too many leading # for comment (E266) | | CAS-13780 |
Takeshi Nakazato | 28317ceb5c9 | CAS-13780 insert whitespace in between "#" and comment (E265)some comments were deleted because they are clearly outdated. | | CAS-13780 |
Akeem Wells | 2666d390b99M | Merge branch 'master' into CAS-13770 | | CAS-13770 |
Sandra M Castro | b440fd015b6 | Cleaned up left-over files and added proper tearDown methods. | | |
Takeshi Nakazato | 7dd0363ab94 | CAS-13780 fix unused variable issue (F841)- obvious ones were simply deleted
- commented out variables that could be used in future | | CAS-13780 |
Takeshi Nakazato | 32ec7647d8a | CAS-13780 explicitly import casalog (F821) | | CAS-13780 |
Takeshi Nakazato | 285a74b3ae3 | CAS-13780 resolve conflict of variable name (F402) | | CAS-13780 |
Takeshi Nakazato | ca1330b0e13 | CAS-13780 insert blank line (E306) | | CAS-13780 |
Takeshi Nakazato | e4f16ea4ad9 | CAS-13780 remove unused imports (F401) | | CAS-13780 |
Takeshi Nakazato | b208ea7fdf2 | CAS-13780 fix ambiguous variable names (E741) | | CAS-13780 |
Takeshi Nakazato | 1054b218940 | CAS-13780 use "x not in y" instead of "not x in y" (E713) | | CAS-13780 |
Takeshi Nakazato | 2fde3950a8e | CAS-13780 use "is" operator for compasiron with None (E711) | | CAS-13780 |
Takeshi Nakazato | 826c7e85f99 | CAS-13780 fix multiple statement in one line (E701) | | CAS-13780 |
Takeshi Nakazato | 8078975f623 | CAS-13780 white space fix (E225) | | CAS-13780 |
Takeshi Nakazato | 200c2bda724 | CAS-13780 indentation fix (E131) | | CAS-13780 |
Takeshi Nakazato | db3d156c350 | CAS-13780 indentation fix (E127) | | CAS-13780 |
Takeshi Nakazato | 2d7c3744403 | CAS-13780 indentation fix (E125) | | CAS-13780 |
Takeshi Nakazato | 5e50935c0d2 | CAS-13780 indentation fix for comment (E114) | | CAS-13780 |
Takeshi Nakazato | 2671b916f18 | CAS-13780 remove redundant backslash (E502) | | CAS-13780 |
Takeshi Nakazato | 5e50138a489 | CAS-13780 do not use bare except (E722) | | CAS-13780 |