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
The use case is as follows:
In presto, we spin up a postgresql, msyql, and a cassandra container each time the tests are run in thesinglenode profile - even if no tests from their respective groups are run and the containers are effectively unused. To prevent starting of the containers we need to know if the respective tests are going to be run - and without support in tempto that would mean reimplementing a part of tepto/testng. Thus, we'd like the option to:
#assuming test groups foo,bar,baz:
$ ./tempto --print-actual-groups -g foo,bar
foo
bar
$ ./tempto --print-actual-groups -x bar
foo
baz
Then we can grep the groups and see which containers need to be run.
Notice that we'd like tempto to exit immediately after printing the groups.
The use case is as follows:
In presto, we spin up a postgresql, msyql, and a cassandra container each time the tests are run in the
singlenode
profile - even if no tests from their respective groups are run and the containers are effectively unused. To prevent starting of the containers we need to know if the respective tests are going to be run - and without support in tempto that would mean reimplementing a part of tepto/testng. Thus, we'd like the option to:Then we can grep the groups and see which containers need to be run.
Notice that we'd like tempto to exit immediately after printing the groups.
CC @sanjay990
The text was updated successfully, but these errors were encountered: