Source code for jarvis

"""Version number."""
__version__ = "2023.08.10"

import os


[docs]def test(*args): """Run pytest in the base of jarvis.""" import pytest path = os.path.join(os.path.split(__file__)[0], "tests") pytest.main(args=[path] + list(args))