Add stable ci (#3460)

* add stable ci

* fix

* update

* fix

* rename tests dir;fix stable ci bug

* add timeout limit

* update
This commit is contained in:
YUNSHEN XIE
2025-08-20 08:57:17 +08:00
committed by GitHub
parent 67298cf4c0
commit 3a6058e445
87 changed files with 453 additions and 111 deletions

View File

@@ -0,0 +1,13 @@
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()