You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs during every other run of tests:
=========================================================================================================== FAILURES ===========================================================================================================
_________________________________________________________________________________________________________ test_car_cdr _________________________________________________________________________________________________________
def test_car_cdr():
with pytest.raises(ConsError):
car(object())
with pytest.raises(ConsError):
car(None)
with pytest.raises(ConsError):
car(tuple())
with pytest.raises(ConsError):
car([])
with pytest.raises(ConsError):
car(iter([]))
with pytest.raises(ConsError):
> car("ab")
E Failed: DID NOT RAISE <class 'cons.core.ConsError'>
tests/test_cons.py:158: Failed
======================================================================================================= warnings summary =======================================================================================================
Version: 0.4.5
Python-3.9
FreeBSD 13.2
The text was updated successfully, but these errors were encountered:
Just like pythological/etuples#24 (comment), I've added #16 to make sure everything works in the expected environments, because I cannot reproduce this issue locally.
This error occurs during every other run of tests:
Version: 0.4.5
Python-3.9
FreeBSD 13.2
The text was updated successfully, but these errors were encountered: