File tree Expand file tree Collapse file tree 4 files changed +38
-13
lines changed Expand file tree Collapse file tree 4 files changed +38
-13
lines changed Original file line number Diff line number Diff line change 44# generated dev-requirements.txt), run make update-requirements,
55# then re-run bootstrap.sh.
66
7- flake8==3.8.1
8- tox==3.15.1
7+ flake8==3.8.3
8+ tox==3.15.2
99# Twine is used in the release process to upload the package.
1010twine==3.1.1
1111## The following requirements were added by pip freeze:
1212appdirs==1.4.4
1313bleach==3.1.5
14- certifi==2020.4.5.1
14+ certifi==2020.4.5.2
1515chardet==3.0.4
1616distlib==0.3.0
1717docutils==0.16
1818filelock==3.0.12
1919idna==2.9
20- importlib-metadata==1.6.0
20+ importlib-metadata==1.6.1
2121keyring==21.2.1
2222mccabe==0.6.1
2323packaging==20.4
@@ -31,9 +31,9 @@ pyparsing==2.4.7
3131readme-renderer==26.0
3232requests==2.23.0
3333requests-toolbelt==0.9.1
34- six==1.14 .0
34+ six==1.15 .0
3535toml==0.10.1
36- tqdm==4.46.0
36+ tqdm==4.46.1
3737urllib3==1.25.9
3838virtualenv==20.0.21
3939webencodings==0.5.1
Original file line number Diff line number Diff line change 44# To add/update dependencies, update test-requirements.txt.in (not the
55# generated test-requirements.txt) and run make update-requirements
66
7- SQLAlchemy==1.2.10
7+ SQLAlchemy==1.3.17
88more-itertools==8.3.0
99mock==4.0.2
10- pytest==3.7.1
10+ pytest==5.4.3
1111futures==3.1.1
1212psycopg2==2.8.5
1313## The following requirements were added by pip freeze:
14- atomicwrites==1.4.0
1514attrs==19.3.0
16- importlib-metadata==1.6.0
15+ importlib-metadata==1.6.1
16+ packaging==20.4
1717pluggy==0.13.1
1818py==1.8.1
19- six==1.14.0
19+ pyparsing==2.4.7
20+ six==1.15.0
21+ wcwidth==0.2.4
2022zipp==3.1.0
Original file line number Diff line number Diff line change 44# To add/update dependencies, update test-requirements.txt.in (not the
55# generated test-requirements.txt) and run make update-requirements
66
7- SQLAlchemy==1.2.10 # the last known version of SQLAlchemy that passes all tests.
7+ SQLAlchemy==1.3.17 # the last known version of SQLAlchemy that passes all tests.
88more-itertools
99mock
10- pytest==3.7.1
10+ pytest
1111futures
1212psycopg2
Original file line number Diff line number Diff line change 1+ import pytest
2+
13from sqlalchemy .testing .suite import * # noqa
4+ from sqlalchemy .testing .suite import (
5+ ComponentReflectionTest as _ComponentReflectionTest
6+ )
7+ from sqlalchemy .testing .suite import (
8+ ExpandingBoundInTest as _ExpandingBoundInTest
9+ )
10+
11+
12+ class ComponentReflectionTest (_ComponentReflectionTest ):
13+ @pytest .mark .skip ()
14+ def test_deprecated_get_primary_keys (self ):
15+ # This is removed in the next sqlalchemy release (1.3.18)
16+ pass
17+
18+
19+ class ExpandingBoundInTest (_ExpandingBoundInTest ):
20+ @pytest .mark .skip ()
21+ def test_null_in_empty_set_is_false (self , connection ):
22+ # Fixed in https://github.com/cockroachdb/cockroach/pull/49814
23+ # Unskip when backported.
24+ pass
You can’t perform that action at this time.
0 commit comments