Created
January 2, 2020 08:29
-
-
Save chrissound/6a4a399fdb8d662f3b9c87aa06d01c14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=================================== FAILURES =================================== | |
__________ EnsurePKSortableTest.test_exception_persistent_flush_py3k ___________ | |
Traceback (most recent call last): | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/persistence.py", line 1631, in _sort_states | |
persistent_sorted = sorted(persistent, key=lambda q: q.key[1]) | |
TypeError: unorderable types: MyNotSortableEnum() < MyNotSortableEnum() | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/assertions.py", line 308, in assert_raises_message | |
callable_(*args, **kwargs) | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/session.py", line 2459, in flush | |
self._flush(objects) | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/session.py", line 2597, in _flush | |
transaction.rollback(_capture_exception=True) | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/util/langhelpers.py", line 68, in __exit__ | |
compat.reraise(exc_type, exc_value, exc_tb) | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/util/compat.py", line 153, in reraise | |
raise value | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/session.py", line 2557, in _flush | |
flush_context.execute() | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/unitofwork.py", line 422, in execute | |
rec.execute(self) | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/unitofwork.py", line 589, in execute | |
uow, | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/persistence.py", line 213, in save_obj | |
) in _organize_states_for_save(base_mapper, states, uowtransaction): | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/persistence.py", line 374, in _organize_states_for_save | |
base_mapper, uowtransaction, states | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/persistence.py", line 1608, in _connections_for_states | |
for state in _sort_states(states): | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/orm/persistence.py", line 1635, in _sort_states | |
"values must be sortable in Python (was: %s)" % err | |
sqlalchemy.exc.InvalidRequestError: Could not sort objects by primary key; primary key values must be sortable in Python (was: unorderable types: MyNotSortableEnum() < MyNotSortableEnum()) | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "/build/SQLAlchemy-1.3.6/test/orm/test_unitofwork.py", line 3446, in test_exception_persistent_flush_py3k | |
s.flush, | |
File "/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/assertions.py", line 311, in assert_raises_message | |
assert re.search(msg, util.text_type(e), re.UNICODE), "%r !~ %s" % ( | |
AssertionError: "Could not sort objects by primary key; primary key values must be sortable in Python \\(was: '<' not supported between instances of 'MyNotSortableEnum' and 'MyNotSortableEnum'\\)" !~ Could not sort objects by primary key; primary key values must be sortable in Python (was: unorderable types: MyNotSortableEnum() < MyNotSortableEnum()) | |
assert None | |
+ where None = <function search at 0x7ffff72c8950>("Could not sort objects by primary key; primary key values must be sortable in Python \\(was: '<' not supported between instances of 'MyNotSortableEnum' and 'MyNotSortableEnum'\\)", 'Could not sort objects by primary key; primary key values must be sortable in Python (was: unorderable types: MyNotSortableEnum() < MyNotSortableEnum())', 32) | |
+ where <function search at 0x7ffff72c8950> = re.search | |
+ and 'Could not sort objects by primary key; primary key values must be sortable in Python (was: unorderable types: MyNotSortableEnum() < MyNotSortableEnum())' = <class 'str'>(InvalidRequestError('Could not sort objects by primary key; primary key values must be sortable in Python (was: unorderable types: MyNotSortableEnum() < MyNotSortableEnum())',)) | |
+ where <class 'str'> = util.text_type | |
+ and 32 = re.UNICODE | |
----------------------------- Captured stderr call ----------------------------- | |
/nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/assertions.py:311: PytestAssertRewriteWarning: asserting the value None, please use "assert is None" | |
assert re.search(msg, util.text_type(e), re.UNICODE), "%r !~ %s" % ( | |
=========================== short test summary info ============================ | |
SKIPPED [18] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'OnConflictTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'UnsupportedIndexReflectTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [10] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ReturnDefaultsTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_autoflush_unbound' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_transactions_isolated' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MSDateTypeTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'Int8RangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [22] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'JSONBRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [16] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MatchTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_two_table' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DateTimeRangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [14] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'BinaryTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [8] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MatchTest' skipped by full_text_search_missing | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'NonPKCascadeTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reflection' : DB specific feature | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_transaction' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SequenceAsServerDefaultTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'doesn't support sequences as a server side default. | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_lastrow_accessor_two' : sqlite | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'UUIDTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_from_joined_subq_test' : Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_accounting_deleted_items_restored' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reset_via_agent_begin_twophase' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'LOBFetchTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [9] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MultiSchemaTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reverse_savepoint' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_cursor_execute' : no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_dirty_state_transferred_deep_nesting' : savepoints not supported | |
SKIPPED [12] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SequenceTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_commit_collections' : savepoints not supported | |
SKIPPED [21] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'AutocommitTextTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [21] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'CoreArrayRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_manytomany_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [9] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'QueryTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_branch_savepoint_rollback' : savepoints not supported | |
SKIPPED [15] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExtractTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_with_implicit_returning' : sqlite doesn't support 'returning' | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SQLModeDetectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_onetoone_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_blank_schema_arg' : not postgresql | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_safe_reraise_py2k_warning' : Python version 2.xx is required. | |
SKIPPED [41] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TypesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_manytoone_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_multiple_two_phase' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_heavy_nesting' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_mixed_two_phase_transaction' : savepoints not supported | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_subtransaction_commit' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_invalidate' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ZooMarkTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_onetomany_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'Int4RangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'AnyAllTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SystemTableTablenamesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reset_via_agent_begin_twophase_commit' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'NormalizedNameTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'Backend does not require denormalized names. | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'setup' : Backend does not require denormalized names. | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_lastrow_accessor_six' : sqlite | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_direct_params_returning' : sqlite doesn't support 'returning' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_pk_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'RegClassTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DontReflectIOTTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'EuroNumericTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_drop_table_comment' : not postgresql and not mysql and not oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_manytoone_passive_uselist' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [6] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'HasSequenceTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'CompositeStatementTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'sqlite doesn't support 'returning' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'NumericInterpretationTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'JSONTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_connectionless_autoclose_crud_rows_exhausted' : sqlite doesn't support 'returning' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: '_test_get_table_oid' : PG specific feature | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_from_multitable_same_names' : Multi table update | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'BatchDeleteIgnoresRowcountTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'not supported by database | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_transaction' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_orm_many_engines' : :memory: connection not suitable here | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_defaults_second_table_same_name' : Multi table update | |
SKIPPED [14] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ReturningTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_deleted_on_rollback' : savepoints not supported | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'QuotedBindRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_delete_from' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_bidirectional_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [42] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: No profiling stats available on this platform for this function. Run tests with --write-profiles to add statistics to profiles.txt for this platform. | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'RealIsolationLevelTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_autoclose_on_insert_implicit_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_pk_threelevel_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_sequence_execute' : no sequence support | |
SKIPPED [9] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TypeReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'OnDuplicateTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TableBoundSequenceTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_multitable_same_name' : Multi table update | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'AutocommitTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'dialect does not support AUTOCOMMIT isolation mode and dialect does not support AUTOCOMMIT isolation mode and dialect does not support AUTOCOMMIT isolation mode and dialect does not support AUTOCOMMIT isolation mode | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_multitable' : Multi table update | |
SKIPPED [11] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'CXOracleConnectArgsTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_lastrow_accessor_one' : sqlite | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_begin_begin_nested_rollback_rollback' : savepoints not supported | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TableReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [14] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MiscBackendTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [6] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'CTETest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function and not postgresql and not mssql and not oracle | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'CTEDefaultTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function and not postgresql and not mssql and not oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_from_multitable' : Multi table update | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'go' : sqlite doesn't support 'returning' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ConstraintTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MiscTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'IndexPropertyJsonTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ForeignTableReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_on_prepare' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'OIDTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_explode_in_initializer_disconnect' : Crashes on py3k+cx_oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_rollback' : savepoints not supported | |
SKIPPED [67] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExplicitAutoCommitDeprecatedTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [20] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'EnumTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'PartitionedReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_commit' : savepoints not supported | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DateRangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'BuggyDomainReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [16] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SetInputSizesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DBLinkReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reset_rollback_two_phase_no_rollback' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SpecialTypesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_has_schema' : not postgresql and not mysql and not mssql | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'NumRangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_lastrow_accessor_four' : no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_transaction_connection_add' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_twophase' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_on_invalid_savepoint' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reflect_all_schemas_default_overlap' : not postgresql and not mysql and not mssql | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'KeyReturningTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_defaults_second_table' : Multi table update | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_ignores_clean_on_savepoint_agg_upd_eval' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_bad_freetds_warning' : not mssql+pymssql | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_to_subtransaction' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_no_defaults_second_table' : Multi table update | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_versioncheck_for_update_legacy' : no FOR UPDATE NOWAIT support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_get_comments' : not postgresql and not mysql and not oracle | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'PassiveDeletesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'not supported by database | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_pg_dialect_use_native_unicode_from_config' : not postgresql+psycopg2 and not postgresql+psycopg2cffi | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_get_inter_schema_foreign_keys' : not postgresql and not mysql and not mssql | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'RoundTripIndexTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_no_implicit_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_begin_begin_nested_rollback_commit' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_fk_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_no_inserted_pk_on_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_on_invalid_twophase' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [10] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DialectTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_two_phase_recover' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExecutionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [22] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'JSONRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_pk_violation_with_savepoint' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'IdiosyncrasyTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExtraPassiveDeletesTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'not supported by database | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_join_multitable' : Multi table update | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_delete' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_two_table_plus_alias' : Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_add_table_comment' : not postgresql and not mysql and not oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_external_nested_transaction' : savepoints not supported | |
SKIPPED [8] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MaterializedViewReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_rollback_collections' : savepoints not supported | |
SKIPPED [9] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'RowVersionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SequenceReturningTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'sqlite doesn't support 'returning' | |
SKIPPED [8] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'IdentityInsertTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [11] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SequenceExecTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_mixed_transaction_control' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_release_fails_warning' : Python version 2.xx is required. | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_fk_threelevel_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_contextmanager_nested_rollback' : savepoints not supported | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TimestampMicrosecondsTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'not oracle | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'IndexPropertyArrayTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'HashableFlagORMTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [13] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'HStoreRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'needs hstore extension | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'IntervalReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_two_phase_transaction' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [16] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'EnumSetTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MySQLForUpdateLockingTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [19] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'MutableColumnCopyArrayTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_ignores_clean_on_savepoint_agg_upd_fetch' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_delete_from_joined_subq_test' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_unknown_types' : sqlite | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reverse_eng_name' : foo | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_reset_via_agent_begin_twophase_rollback' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'BatchInsertsTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'OutParamTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: '_test_alter_invalidate_pool_to_false' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_key_replaced_by_update_nested' : savepoints not supported | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SelfReferentialTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_branch_twophase_rollback' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TupleTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_explicit_sequence' : no sequence support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_to_sql_expr' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_autotrans' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_change_m2o_passive' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_expunge_pending_on_rollback' : savepoints not supported | |
SKIPPED [10] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DomainReflectionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_begin_begin_nested_close' : savepoints not supported | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TypeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_mixed_transaction_close' : savepoints not supported | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TimezoneTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_sql_expr_w_mods_bump' : sqlite doesn't support 'returning' | |
SKIPPED [4] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'RemoveUTCTimestampTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'QueryUnicodeTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'SequenceCompilerTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no sequence support | |
SKIPPED [7] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'DateTimeTZRangeRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'custom function | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_subtransaction_rollback' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_string_default_on_insert_with_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_transactional_advanced' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_int_default_on_insert_with_returning' : sqlite doesn't support 'returning' | |
SKIPPED [30] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'PGArrayRoundTripTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ReflectHugeViewTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExecuteTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_autoflush' : independent connections disabled when :memory: connections are used or SQL Server 2005+ is required for independent connections | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_comment_reflection' : not postgresql and not mysql and not oracle | |
SKIPPED [2] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'UnicodeSchemaTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_rollback_ignores_clean_on_savepoint' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoints' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_report_primary_error_when_rollback_fails' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_get_comments_with_schema' : not postgresql and not mysql and not oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'FastExecutemanyTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_transactional_advanced' : no SA implementation or two-phase xact not supported by drivers or two-phase xact not implemented in SQLA/oracle or two-phase xact not supported by database or two-phase xact not supported by database or two-phase xact not supported by drivers/SQLA or FIXME: JDBC driver confuses the transaction state, may need separate XA implementation or recent MySQL communiity editions have too many issues (late 2016), disabling for now | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'FloatCoercionTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_three_table' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [5] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ExplicitAutoCommitTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_versioncheck_for_update' : no FOR UPDATE NOWAIT support | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_explode_in_initializer' : Crashes on py3k+cx_oracle | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_server_default_no_implicit_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_change_m2o_passive_uselist' : target backend doesn't support ON UPDATE CASCADE | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_uppercase_direct_params_returning' : sqlite doesn't support 'returning' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_begin_nested_close' : savepoints not supported | |
SKIPPED [9] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'InsertTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_two_table_plus_alias' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_three_table' : Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM | |
SKIPPED [14] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'ServerSideCursorsTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite'no server side cursors support | |
SKIPPED [3] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'TimestampTest' unsupported on any DB implementation 'sqlite(3.28.0)+pysqlite' | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_two_table' : Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_fk_options' : not postgresql and not mysql | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_exec_alias_plus_table' : Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM and Backend does not support DELETE..FROM | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_nested_accounting_new_items_removed' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_savepoint_lost_still_runs' : savepoints not supported | |
SKIPPED [1] /nix/store/brzp6la0zrkzri7bpj6jwla0rab82d20-python3.5-SQLAlchemy-1.3.6/lib/python3.5/site-packages/sqlalchemy/testing/config.py:98: 'test_update_from' : Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM and Backend does not support UPDATE..FROM | |
FAILED test/orm/test_unitofwork.py::EnsurePKSortableTest::test_exception_persistent_flush_py3k | |
........................................................................ [ 62%] | |
=========== 1 failed, 8478 passed, 960 skipped in 423.81s (0:07:03) ============ | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 62%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
........................................................................ [ 63%] | |
builder for '/nix/store/q8i28gzh0yjsbiv7hkr0kxkl1pmbgx11-python3.5-SQLAlchemy-1.3.6.drv' failed with exit code 1 | |
cannot build derivation '/nix/store/3yb2hbsrpjm7zrdlz4r0806l184xiy6g-python3.5-sphinx-1.8.3.drv': 1 dependencies couldn't be built | |
cannot build derivation '/nix/store/ii6s7blsc6qchv18gil9zlw9w0ivy7dd-python3.5-joblib-0.13.2.drv': 1 dependencies couldn't be built | |
cannot build derivation '/nix/store/09kk6lzfn3akbwyb5p5blfyv4hl5g5kp-python3.5-scikit-learn-0.21.2.drv': 1 dependencies couldn't be built | |
error: build of '/nix/store/09kk6lzfn3akbwyb5p5blfyv4hl5g5kp-python3.5-scikit-learn-0.21.2.drv', '/nix/store/pw951khna7hwav8rs1wcchwrnccx6pfz-python3.5-scipy-1.3.1.drv' failed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment