I have a load of Python tkinter GUI tests that run fine locally (on Windows) but do not run using GitHub Actions. The error I get is:
_tkinter.TclError: no display name and no $DISPLAY environment variable
I believe this is because there is no logical graphical interface for tkinter to use under GitHub Actions. Is there a way to indicate that I don't care about the display being visible so that my tests will run?