skip TEST_DILL on Python2 (#32027)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/32027
The test was added in #30985 for #28313. Seems the fix only works for
Python3 but doesn't work on Python2. The current Python2 CI docker image
doesn't have `dill` module installed at all so it's not captured.
I'm trying to build and push new CI docker image which has `dill` installed
and I verified it's the latest version 0.3.1.1 but the fix doesn't seem
to work and blocks me from upgrading image version. It works for Python3
docker image though...
Here is a succeeded job with old image (no dill installed):
https://app.circleci.com/jobs/github/pytorch/pytorch/4192688
Here is a failed job with new image (dill installed):
https://app.circleci.com/jobs/github/pytorch/pytorch/4192679
This PR bypasses the test for Py2 to unblock docker image change. We
can figure out a proper fix for Py2 later.
Test Plan: Imported from OSS
Differential Revision: D19341451
Pulled By: ljk53
fbshipit-source-id: d5768de8cbaf1beba8911da76f4942b8f210f2d2