You can avoid any configuration and just add the command line arguments to your code temporarily, bit dirty but very practical:
import sys
if __name__ == "__main__":
sys.argv = [__file__, 'first-arg', 'second-arg']
print('arguments:', sys.argv)