D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cloudlinux
/
venv
/
lib64
/
python3.11
/
site-packages
/
numpy
/
lib
/
tests
/
Filename :
test_financial_expired.py
back
Copy
import sys import pytest import numpy as np def test_financial_expired(): match = 'NEP 32' with pytest.warns(DeprecationWarning, match=match): func = np.fv with pytest.raises(RuntimeError, match=match): func(1, 2, 3)