mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 08:21:53 +08:00
3a6058e445
* add stable ci * fix * update * fix * rename tests dir;fix stable ci bug * add timeout limit * update
14 lines
230 B
Python
14 lines
230 B
Python
import unittest
|
|
|
|
import fastdeploy
|
|
|
|
|
|
class TestVersion(unittest.TestCase):
|
|
def test_get_version(self):
|
|
ver = fastdeploy.version()
|
|
assert ver.count("COMMIT") > 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|