We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aef3a1 commit 2e4797eCopy full SHA for 2e4797e
.travis.yml
@@ -0,0 +1,7 @@
1
+language: python
2
+dist: bionic
3
+python:
4
+ - "3.6"
5
+ - "3.7"
6
+script:
7
+ - python3 -m unittest discover
test.py
@@ -0,0 +1,16 @@
+import json
+from pathlib import Path
+import unittest
+
+class TestSequenceFunctions(unittest.TestCase):
+ def setUp(self):
8
+ self.index = json.load("index.json")
9
+ self.root = Path(".")
10
11
+ def test_meta_dir(self):
12
+ for model_kind in self.index["meta"]:
13
+ unittest.assertTrue((self.root / model_kind).exists())
14
15
+if __name__ == '__main__':
16
+ unittest.main()
0 commit comments