I`m running tests aas a rake task, which contains something like:
system "bundle exec parallel_cucumber -n #{ENV['THREADS']} features -o '-f AllureCucumber::Formatter -o allure -t @#{platform} #{tag} -r features/pages/#{platform} -r features/support -r features/step_definitions -t ~@Skip'"
So i can change number of my features from CI using #{tag} variable, but anyway im changing it from 1 feature tag to 3 feature tags or 29 (looks like "@tutorial,@false_auth,@auth_screen_references") and every time i see only one string: 2 processes for 29 features, ~ 14 features per process parallel_cucumber dont want to count scenarios in use, it`s always showing me max value.