File tree Expand file tree Collapse file tree 4 files changed +23
-14
lines changed
Expand file tree Collapse file tree 4 files changed +23
-14
lines changed Original file line number Diff line number Diff line change 6262 docker pull cockroachdb/${{ matrix.crdb-version }}
6363 docker run --rm -d --name crdb -p 26257:26257 \
6464 cockroachdb/${{ matrix.crdb-version }} start-single-node --insecure
65+ sleep 10
66+ docker exec crdb cockroach sql --insecure --host=localhost:26257 \
67+ -e 'CREATE SCHEMA test_schema; CREATE SCHEMA test_schema_2;'
6568 - name : Install testrunner
6669 run : pip install --user tox==${TOX_VERSION}
6770 - name : Test
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ backports-tarfile==1.2.0
22 # via jaraco-context
33certifi == 2024.8.30
44 # via requests
5- cffi == 1.17.0
5+ cffi == 1.17.1
66 # via cryptography
77charset-normalizer == 3.3.2
88 # via requests
@@ -12,13 +12,13 @@ distlib==0.3.8
1212 # via virtualenv
1313docutils == 0.21.2
1414 # via readme-renderer
15- filelock == 3.15.4
15+ filelock == 3.16.0
1616 # via
1717 # tox
1818 # virtualenv
19- idna == 3.8
19+ idna == 3.10
2020 # via requests
21- importlib-metadata == 8.4 .0
21+ importlib-metadata == 8.5 .0
2222 # via
2323 # keyring
2424 # twine
@@ -38,7 +38,7 @@ markdown-it-py==3.0.0
3838 # via rich
3939mdurl == 0.1.2
4040 # via markdown-it-py
41- more-itertools == 10.4 .0
41+ more-itertools == 10.5 .0
4242 # via
4343 # jaraco-classes
4444 # jaraco-functools
@@ -48,7 +48,7 @@ packaging==24.1
4848 # via tox
4949pkginfo == 1.10.0
5050 # via twine
51- platformdirs == 4.2.2
51+ platformdirs == 4.3.3
5252 # via virtualenv
5353pluggy == 1.5.0
5454 # via tox
@@ -70,7 +70,7 @@ requests-toolbelt==1.0.0
7070 # via twine
7171rfc3986 == 2.0.0
7272 # via twine
73- rich == 13.8.0
73+ rich == 13.8.1
7474 # via twine
7575secretstorage == 3.3.3
7676 # via keyring
@@ -82,11 +82,11 @@ tox==3.23.1
8282 # via -r dev-requirements.in
8383twine == 5.1.1
8484 # via -r dev-requirements.in
85- urllib3 == 2.2.2
85+ urllib3 == 2.2.3
8686 # via
8787 # requests
8888 # twine
89- virtualenv == 20.26.3
89+ virtualenv == 20.26.4
9090 # via tox
91- zipp == 3.20.1
91+ zipp == 3.20.2
9292 # via importlib-metadata
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ attrs==24.2.0
88 # via pytest
99futures==3.0.5
1010 # via -r test-requirements.in
11- greenlet==3.0.3
11+ greenlet==3.1.0
1212 # via sqlalchemy
1313iniconfig==2.0.0
1414 # via pytest
@@ -18,21 +18,21 @@ markupsafe==2.1.5
1818 # via mako
1919mock==5.1.0
2020 # via -r test-requirements.in
21- more-itertools==10.4 .0
21+ more-itertools==10.5 .0
2222 # via -r test-requirements.in
2323packaging==24.1
2424 # via pytest
2525pluggy==1.5.0
2626 # via pytest
27- psycopg==3.2.1
27+ psycopg==3.2.2
2828 # via -r test-requirements.in
2929psycopg2==2.9.9
3030 # via -r test-requirements.in
3131py==1.11.0
3232 # via pytest
3333pytest==7.1.3
3434 # via -r test-requirements.in
35- sqlalchemy==2.0.34
35+ sqlalchemy==2.0.35
3636 # via
3737 # -r test-requirements.in
3838 # alembic
Original file line number Diff line number Diff line change @@ -47,6 +47,12 @@ def test_get_noncol_index(self):
4747 # test not designed to handle ('desc', 'nulls_last')
4848 pass
4949
50+ @skip ("cockroachdb" )
51+ def test_get_multi_check_constraints (self ):
52+ # we return results for extra tables that the test does not expect:
53+ # geography_columns, geometry_columns, spatial_ref_sys
54+ pass
55+
5056 def test_get_multi_columns (self ):
5157 insp = inspect (config .db )
5258 actual = insp .get_multi_columns ()
You can’t perform that action at this time.
0 commit comments