parser.add_argument("-rt","--test","--tests","--run-test","--run-tests",dest="test",help="Run in debug mode with only collections that have test: true",action="store_true",default=False)
parser.add_argument("-co","--collection-only","--collections-only",dest="collection_only",help="Run only collection operations",action="store_true",default=False)
parser.add_argument("-lo","--library-only","--libraries-only",dest="library_only",help="Run only library operations",action="store_true",default=False)
parser.add_argument("-lof","--library-first","--libraries-first",dest="library_first",help="Run library operations before collections",action="store_true",default=False)
parser.add_argument("-rc","-cl","--collection","--collections","--run-collection","--run-collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str)
parser.add_argument("-rl","-l","--library","--libraries","--run-library","--run-libraries",dest="libraries",help="Process only specified libraries (comma-separated list)",type=str)
parser.add_argument("-dc","--delete","--delete-collections",dest="delete",help="Deletes all Collections in the Plex Library before running",action="store_true",default=False)
@ -65,6 +66,7 @@ test = get_arg("PMM_TEST", args.test, arg_bool=True)