I wrote a very simple test that is failing:
with open('file.txt', 'r') as f:
print(f.read())
While the file is very much there, it is giving an error:
FileNotFoundError: [Errno 2] No such file or directory: 'file.txt'
How am I supposed to setup the VSCode env to recognize the remote file system during execution? It does seem to be using the remote python interpreter.