I have set environment variables in the .bashrc:
export nnUNet_preprocessed="/data/nnUnet/preprocessed"
These are found successfully in terminal after sourcing and/or logging out. If I run pycharm out of the same terminal, it is able to find them via
nnUNet_preprocessed = os.environ.get('nnUNet_preprocessed')
However, if I launch Pycharm via Actions (Ubuntu 16.04), it yields none. Any suggestions?