[Sqlalchemy-tickets] Issue #4034: test failure as of Python 3.6.2 (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
From: Michael B. <iss...@bi...> - 2017-07-24 14:24:00
|
New issue 4034: test failure as of Python 3.6.2 https://bitbucket.org/zzzeek/sqlalchemy/issues/4034/test-failure-as-of-python-362 Michael Bayer: released just on July 17: _________________________________________ ``` #!python SessionStateTest.test_with_no_autoflush_after_exception _________________________________________ Traceback (most recent call last): File "/home/classic/dev/sqlalchemy/test/orm/test_session.py", line 324, in test_with_no_autoflush_after_exception lambda obj: 1 / 0 File "/home/classic/dev/sqlalchemy/test/../lib/sqlalchemy/testing/assertions.py", line 279, in assert_raises assert success, "Callable did not raise an exception" AssertionError: Callable did not raise an exception ============================================= 1 failed, 77 passed, 4 skipped in 1.92 seconds ============================================== ``` clearly, 1/0 raises ZeroDivisionError by itself, someting is up with the fixtures or pytest or something. does not appear on 3.6.0. |