mirror of
https://github.com/microsoft/FLAML.git
synced 2026-02-09 10:19:18 +08:00
* lint * bump ver * bump ver * fixed circular import --------- Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com>
14 lines
254 B
Python
14 lines
254 B
Python
import unittest
|
|
|
|
import flaml
|
|
|
|
|
|
class TestVersion(unittest.TestCase):
|
|
def test_version(self):
|
|
self.assertTrue(hasattr(flaml, "__version__"))
|
|
self.assertTrue(len(flaml.__version__) > 0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|