Lines Matching refs:excinfo
45 with pytest.raises(TypeError) as excinfo:
48 assert excinfo.match(
77 with pytest.raises(TypeError) as excinfo:
80 msg(excinfo.value)
88 with pytest.raises(TypeError) as excinfo:
91 msg(excinfo.value)
122 with pytest.raises(TypeError) as excinfo:
125 msg(excinfo.value)
133 with pytest.raises(TypeError) as excinfo:
136 msg(excinfo.value)
150 with pytest.raises(TypeError) as excinfo:
152 assert "incompatible function arguments" in str(excinfo.value)
154 with pytest.raises(TypeError) as excinfo:
156 assert "incompatible function arguments" in str(excinfo.value)
173 with pytest.raises(TypeError) as excinfo:
175 assert "incompatible function arguments" in str(excinfo.value)
177 with pytest.raises(RuntimeError) as excinfo:
180 msg(excinfo.value)
191 with pytest.raises(TypeError) as excinfo:
193 assert "incompatible function arguments" in str(excinfo.value)
198 with pytest.raises(TypeError) as excinfo:
200 assert "incompatible function arguments" in str(excinfo.value)
205 with pytest.raises(TypeError) as excinfo:
207 assert "incompatible function arguments" in str(excinfo.value)
209 with pytest.raises(TypeError) as excinfo:
211 assert "incompatible function arguments" in str(excinfo.value)
213 with pytest.raises(TypeError) as excinfo:
215 assert "incompatible function arguments" in str(excinfo.value)
222 with pytest.raises(TypeError) as excinfo:
224 assert "incompatible function arguments" in str(excinfo.value)