If using unittest:
import unittest
with self.assertRaises( Exception ) as error:
...
If using pytest:
import pytest
with pytest.raises( Exception ) as error:
...
A blog about coding
If using unittest:
import unittest
with self.assertRaises( Exception ) as error:
...
If using pytest:
import pytest
with pytest.raises( Exception ) as error:
...
unittest | nosetests |
python -m unittest tests/test_something.py -v | nosetests tests/test_something.py -v |
python setup.py test | python setup.py nosetests |