taskcat icon indicating copy to clipboard operation
taskcat copied to clipboard

Ability to use mulitple .taskcat.yml from scopes

Open TejjeT opened this issue 4 years ago • 5 comments

Hello ,

At present taskcat uses .taskcat.yml from a dedicated project. It will be helpful to have the ability to auto-include additional .taskcat.yml in subfolders in scope. if this is already possible, could you provide a way for me to do this. This will help me have different sets of tests while dev and ci ( more like integration tests , if I have 100 different tests) , I know we can run a specific tests using -t but having a config helps

TejjeT avatar Jul 30 '21 14:07 TejjeT

Interesting use case. Would using -p subfolder accomplish what you're looking for?

For what it's worth, while I understand the ask, I don't understand how it would be used in practice.

Can you elaborate a bit on the pain here ?

Edit: Thoughts after I hit submit: This behavior sounds very similar to how unit tests are structured. Is the intent to run taskcat test run at the root and have the subconfigs run, but not necessarily need to clutter your project config with your 100 specific test cases?

andrew-glenn avatar Jul 30 '21 15:07 andrew-glenn

Yes that is exactly what I was referring to , I could separate the tests into the corresponding sub folders , and I could choose to Run them based on the the current working directory from which I am Running.

This could also mean I could have more than one taskcat files ( obvisously with different names) in a given subdirectory

TejjeT avatar Aug 25 '21 05:08 TejjeT

@TejjeT

The only remaining question I have is around project root.

❯ tree . -a
.
├── .taskcat.yml
├── testA
│   └── .taskcat.yml
├── testB
│   └── .taskcat.yml
├── testC
│   └── .taskcat.yml
└── testD
    └── .taskcat.yml

In my mind, each of these tests could be an independent project. Executing taskcat test run from the root would collolate each of those tests and run them at once via one execution, rather than independently running taskcat against testA, then testB etc.

Does this track with your intended behavior?

andrew-glenn avatar Nov 04 '21 15:11 andrew-glenn

Sorry for super late response, but yes what you described is exactly what I was asking for.

TejjeT avatar Jan 04 '22 15:01 TejjeT

Any updates on this? I also have similar kind of requirement wherein multiple templates are in different directories, and would like to run them all together by having their own .taskcat.yml file.

sahu-sunil avatar Jan 18 '22 10:01 sahu-sunil