diff options
| author | Seth M. Larson <SethMichaelLarson@users.noreply.github.com> | 2018-04-24 12:27:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-24 12:27:15 -0500 |
| commit | a0513b7f17a77b1a9c27f8c3710f23ffa404f6bc (patch) | |
| tree | 59a3092ca944573e13115c9ea7f9452b11411d38 | |
| parent | bbff08c49df269ad24851d4264fd3f1dbd141358 (diff) | |
| download | urllib3-fix-skipped-tests.tar.gz | |
Add noqa to import testfix-skipped-tests
| -rw-r--r-- | test/contrib/test_pyopenssl_dependencies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contrib/test_pyopenssl_dependencies.py b/test/contrib/test_pyopenssl_dependencies.py index 47989ad8..eb6a73bd 100644 --- a/test/contrib/test_pyopenssl_dependencies.py +++ b/test/contrib/test_pyopenssl_dependencies.py @@ -15,7 +15,7 @@ except ImportError: def setup_module(): try: - from urllib3.contrib.pyopenssl import inject_into_urllib3 + from urllib3.contrib.pyopenssl import inject_into_urllib3 # noqa: F401 except ImportError as e: pytest.skip('Could not import PyOpenSSL: %r' % e) |
