This repository has been archived on 2022-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
pathfinder/tests/test_pathfinder.py
Deepak 0e3eddebcc
All checks were successful
gitea-physics/pathfinder/pipeline/head This commit looks good
Fixes linting issue and makes html by default
2021-08-29 15:01:54 -05:00

8 lines
154 B
Python

from pathfinder import __version__
import pathfinder
def test_version():
assert __version__ == '0.0.1'
assert pathfinder.get_version() == __version__