blob: e1d05da0cfe410394545de789245679fa1637d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import sys
import pytest
import numpy as np
def test_financial_expired():
if sys.version_info[:2] >= (3, 7):
match = 'NEP 32'
else:
match = None
with pytest.raises(AttributeError, match=match):
np.fv
|