added more tests types in Pipefile

This commit is contained in:
Rshad Zhran 2019-08-20 15:02:37 +02:00
parent 772d234b74
commit e7614e13e8

13
Pipfile
View File

@ -14,9 +14,20 @@ molecule = "==2.20.2"
python_version = "2.7"
[scripts]
destroy ="molecule destroy"
# Normal Case
test ="molecule test"
agent ="molecule test -s wazuh-agent"
elasticsearch ="molecule test -s elasticsearch"
filebeat ="molecule test -s filebeat"
kibana ="molecule test -s kibana"
# Do Not destroy the created containers afte the test execution ends.
test_still ="molecule test --destroy=never"
agent_still ="molecule test -s wazuh-agent --destroy=never"
elasticsearch_still ="molecule test -s elasticsearch --destroy=never"
filebeat_still ="molecule test -s filebeat --destroy=never"
kibana_still ="molecule test -s kibana --destroy=never"
destroy_still ="molecule destroy --destroy=never"
# Destroy all the existing containers ' Created by Molecule '
destroy ="molecule destroy"