I created an example role project with this command:
molecule init role cranberry --driver-name docker
If you pull it:
git clone git@github.com:natemarks/cranberry.git
and run it:
make clean-venv && make molecule-test
It should set up the virtualenv and run the test successfully because it uses the project directory name 'cranberry' as the role name. If I want to override that so that my role_name is still 'cranberry' but my project directory is 'role-cranberry'. I should be able to just rename/move the project directory to 'role-cranberry' and set meta/main.yaml role_name: cranberry. This doesn't work.
similarly , I should be able to break the test without changing the project directory by just adding some garbage value to meta/main.yml role_name,like;
galaxy_info:
role_name: badrole
but that doesn't work either.
I think I'm using the latest python packages. Thanks in advance for tips