aboutsummaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2023-03-24 21:15:13 +0800
committerGitHub <noreply@github.com>2023-03-24 13:15:13 +0000
commitb5170bf26dcc2834e2279e1e739d94916e5a5fc3 (patch)
tree48060c4bde50ab39ae3451eb597ab02f6e92410f /tests/conftest.py
parent5e6476a4c6e094926a983dcf5cbe9488c30aeb53 (diff)
downloadpyca-cryptography-b5170bf26dcc2834e2279e1e739d94916e5a5fc3.zip
pyca-cryptography-b5170bf26dcc2834e2279e1e739d94916e5a5fc3.tar.gz
pyca-cryptography-b5170bf26dcc2834e2279e1e739d94916e5a5fc3.tar.bz2
drop python 3.6 support (#8448)
* drop python 3.6 support * Update tests/hazmat/bindings/test_openssl.py Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com> --------- Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 98f6095..51dca19 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -2,7 +2,6 @@
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
-import sys
import pytest
@@ -28,11 +27,6 @@ def pytest_report_header(config):
def pytest_addoption(parser):
parser.addoption("--wycheproof-root", default=None)
parser.addoption("--enable-fips", default=False)
- # REMOVE ME WHEN WE DROP PYTHON 3.6 SUPPORT
- # This just adds a no-op flag so that we don't error on py36 where
- # pytest-subtests is stuck on 0.8.0
- if sys.version_info[:2] == (3, 6):
- parser.addoption("--no-subtests-shortletter", action="store_true")
def pytest_runtest_setup(item):