You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently vagrant up is included in the vagrant sanity test, it would better to have this functionality in the library so that other test can easily use it
The text was updated successfully, but these errors were encountered:
Currently using two wrapper functions for vagrant up without subscription and with subscription in multiple files such as adb-test/cdk-testsuite/tests/vagrant_sanity.py, vagrant_sshfs.py and openshiftSanity.py file which is not the structure we suppose to do. So creating a single function vagrant_up() in vagrant library with different argument would really helpful to avoid duplicate function.
For example :
def vagrant_up(self, VAGRANTFILE_DIR, PROVIDER, RHN_USERNAME, RHN_PASSWORD, registration_required = False)
If RHN registration is required just pass the argument "registration_required = True" instead of "False". So it will be easy to call the function in different test file to avoid duplication.
Currently
vagrant up
is included in the vagrant sanity test, it would better to have this functionality in the library so that other test can easily use itThe text was updated successfully, but these errors were encountered: