May I know how are PyTorch's unit tests exercised by PyTorch developers in order to verify a PyTorch release

Hello! I noticed that PyTorch is bundled with a set of unit test suites (under pytorch/test/) and the tests can be excersied by running run_test.py. However, I also noticed that run_test.py accepts multiple flags/parameters (e.g., --pt, --jit) and I would like to know which flags/parameters are usually passed to the test suite for verifying a PyTorch release. Besides, I would like to know whether PyTorch is verified with test suites other than run_test.py and what are the flags/parameters passed to those test suites. Thank you in advance!

You probably want to study our github action scripts which run CI. No code gets merged unless these all pass https://github.com/pytorch/pytorch/tree/master/.github/workflows