I have the following environments defined in my platformio.ini file:
[env:nucleo_f767zi]
platform = ststm32
framework = stm32cube
board = nucleo_f767zi
board_build.stm32cube.custom_config_header = yes
[env:native]
platform = native
test_framework = doctest
I wish to disable testing for the nucleo_f767zi environment so that I don’t get errors when I do pio test or tell VS Code to do the testing.

Please let me know if this would be possible. Thanks.