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
./openqa-revtui -c ./_review/*.toml - suppose to consume ALL toml files in this folder
currently it is not happening
The text was updated successfully, but these errors were encountered:
grisu48
changed the title
openqa-revtui -c parameter should support regex
openqa-revtui -c parameter should support multiple files
Jul 6, 2023
grisu48
changed the title
openqa-revtui -c parameter should support multiple files
[openqa-revtui] -c parameter should support multiple files
Jul 6, 2023
The issue is that openqa-revtui currently does not support multiple input files but only one. I consider this as a feature request and need to check if that's even possible to do.
Currently only the latest toml configuration file is considered, we should try to improve this.
We have a singleton Config class which holds all configuration parameters
This class only allows one instance URL
We could add more job groups there (added by each file) but that would still not allow multiple different instances
We would likely to contain all relevant attributes in a new datastructure and create a slice of them in the Config class. I'm leaving this here for now, as this requires further investigation if the feature is feasible or not.
./openqa-revtui -c ./_review/*.toml
- suppose to consume ALL toml files in this foldercurrently it is not happening
The text was updated successfully, but these errors were encountered: