I have written some tests using the unittest module with Selenium and want to convert those tests into an .exe file.
I have tests written across 15 different files and I want a single exe generated for them.
But I could not find how to convert the tests into an exe.
I tried the conventional pyinstaller command:
pyinstaller --onefile -w 'filename.py'
But that didn't work.
I have been skimming through the documentation for long but could not find anything useful.
Can someone help?