We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f7273 commit 6449422Copy full SHA for 6449422
tests/__init__.py
tests/stream/__main__.py
@@ -0,0 +1,6 @@
1
+
2
+from .test import *
3
4
5
+if __name__ == '__main__':
6
+ unittest.main()
tests/stream_test.py tests/stream/test.pytests/stream_test.py renamed to tests/stream/test.py
@@ -1,4 +1,3 @@
-
import unittest
from stream import Stream
@@ -163,7 +162,3 @@ def test_iter(self):
163
162
for elem in s:
164
self.assertEqual(elem, index)
165
index += 1
166
167
168
-if __name__ == '__main__':
169
- unittest.main()
0 commit comments