Skip to content
Snippets Groups Projects
Commit 10ed881d authored by Sam Kagan's avatar Sam Kagan
Browse files

Added custom __eq__() to RunnerIF

parent e66b8d28
No related branches found
No related tags found
2 merge requests!1706merge 2.8.4 to main,!1657Got EVLA CMS restores working via casa_envoy, using casa_restorepipescript.py when it exists
......@@ -67,6 +67,11 @@ class RunnerIF(ABC):
)
return result.communicate()
def __eq__(self, __value: object) -> bool:
if not __value.__class__ == self.__class__:
return False
return self.parameters == __value.parameters and self.build_command == __value.build_command
class AuditorIF(ABC):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment