Cover group in paralell

I have a group of Switchbot Curtains (7 units) and wanted to create a group to have them open and close in paralell but it seems as if the group is all run in sequential and so i tried creating a simple automation with a -choose that opens or close enteties with the paralell mode but it still runs them in seq. mode; any one had this happen or have an idea on how to make this work?

Ultimatly i would prefer to use a group but a automation would be fine if thats the only way. I´m using the Bluetooth integration and the built in Bluetooth adapter in the NUC and not any any esp32 proxies or anything like that.

Any ideas are welcome.

example of the last test using Automation using paralell,

alias: test - curtains
description: ""
trigger: []
condition: []
action:
  - choose:
      - conditions:
          - condition: state
            entity_id: cover.curtain_livingroom_window_1
            state: open
        sequence:
          - parallel:
              - device_id: bf6c275db3d1c0859e7fb12f3b740d0e
                domain: cover
                entity_id: 2e5816b1cd8b0b16c5c2265d9b8859b6
                type: close
              - device_id: ab5206dcbff3b71ecd81385220f57ebe
                domain: cover
                entity_id: 4ea5ab787d4bb387fbe835dc12f30bad
                type: close
              - device_id: da1b5b29be079646809652bb67f7cb14
                domain: cover
                entity_id: 86d34bd920c176894097939cd50962e4
                type: close
      - conditions:
          - condition: state
            entity_id: cover.curtain_livingroom_window_1
            state: closed
        sequence:
          - parallel:
              - device_id: bf6c275db3d1c0859e7fb12f3b740d0e
                domain: cover
                entity_id: 2e5816b1cd8b0b16c5c2265d9b8859b6
                type: open
              - device_id: ab5206dcbff3b71ecd81385220f57ebe
                domain: cover
                entity_id: 4ea5ab787d4bb387fbe835dc12f30bad
                type: open
              - device_id: da1b5b29be079646809652bb67f7cb14
                domain: cover
                entity_id: 86d34bd920c176894097939cd50962e4
                type: open
mode: single

Update, read someone was having responce issues with bluetooth adapters so i installed an ESP32 Proxy and ran the same automation, to my surprise it ran in paralell, once again and it ran in seq. at this point i tested disabling the bluetooth adapter and hassent missed a beat last 10 times.