shows a warning for deprecation of the imp module.
calc_impedance_test.py:13: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Line 13 has:
import imp
This warning can be removed by changing line 13 to:
import importlib
python -m pytest -m no_fpga
shows a warning for deprecation of the imp module.
calc_impedance_test.py:13: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
Line 13 has:
import imp
This warning can be removed by changing line 13 to:
import importlib