diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/ext/test_associationproxy.py | 1 | ||||
| -rw-r--r-- | test/requirements.py | 22 |
2 files changed, 0 insertions, 23 deletions
diff --git a/test/ext/test_associationproxy.py b/test/ext/test_associationproxy.py index 3fa7b4999..583898ce9 100644 --- a/test/ext/test_associationproxy.py +++ b/test/ext/test_associationproxy.py @@ -734,7 +734,6 @@ class SetTest(_CollectionOperations): self.assert_((p1.children > other) == (control > other)) self.assert_((p1.children >= other) == (control >= other)) - @testing.requires.python_fixed_issue_8743 def test_set_comparison_empty_to_empty(self): # test issue #3265 which was fixed in Python version 2.7.8 Parent = self.classes.Parent diff --git a/test/requirements.py b/test/requirements.py index 3934dd23f..37aea52e1 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -3,8 +3,6 @@ """ -import sys - from sqlalchemy import exc from sqlalchemy.sql import sqltypes from sqlalchemy.sql import text @@ -1394,26 +1392,6 @@ class DefaultRequirements(SuiteRequirements): ) @property - def python_fixed_issue_8743(self): - return exclusions.skip_if( - lambda: sys.version_info < (2, 7, 8), - "Python issue 8743 fixed in Python 2.7.8", - ) - - @property - def granular_timezone(self): - """the datetime.timezone class, or SQLAlchemy's port, supports - seconds and microseconds. - - SQLAlchemy ported the Python 3.7 version for Python 2, so - it passes on that. For Python 3.6 and earlier, it is not supported. - - """ - return exclusions.skip_if( - lambda: sys.version_info >= (3,) and sys.version_info < (3, 7) - ) - - @property def selectone(self): """target driver must support the literal statement 'select 1'""" return skip_if(["oracle"], "non-standard SELECT scalar syntax") |
