Skip to content

Commit

Permalink
Merge pull request #25 from swimlane/0_5_4_release
Browse files Browse the repository at this point in the history
0.5.4 Release
  • Loading branch information
MSAdministrator authored Nov 19, 2021
2 parents 68a577a + fa80f10 commit 6fe463d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion atomic_operator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__version__ = "0.5.3"
__version__ = "0.5.4"


from .atomic_operator import AtomicOperator
1 change: 1 addition & 0 deletions atomic_operator/atomic_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def run(self, techniques: list=['all'], test_guids: list=[], atomics_path=os.get
"""
if kwargs.get('help'):
self.__logger.info("Looks like you tried to run help. Please run 'atomic-operator run -- --help'")
return
if debug:
import logging
logging.getLogger().setLevel(logging.DEBUG)
Expand Down
3 changes: 3 additions & 0 deletions tests/test_atomic_operator_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,6 @@ def test_setting_input_arguments():
input_arguments=test_input_dict
)
Base()._set_input_arguments(atomic_test, **kwargs)
for input in atomic_test.input_arguments:
if kwargs.get(input.name):
assert kwargs[input.name] == input.value

0 comments on commit 6fe463d

Please sign in to comment.