Skip to content

Commit c0f7273

Browse files
committed
Try to refactor packages for testing
1 parent 53efe5c commit c0f7273

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/usr/bin/python3"
3+
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
author='Alessandro Mazzoli',
1414
author_email='developer.alessandro.mazzoli@gmail.com',
1515
license='GNU',
16-
packages=find_packages(),
16+
packages=['stream'],
1717
keywords=['iterator', 'generator', 'stream', 'data',
1818
'functional', 'list', 'processing', 'java', 'filter', 'map', 'reduce', 'processing'],
1919
zip_safe=False)

tests/__init__.py

Whitespace-only changes.

test.py renamed to tests/stream_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
12
import unittest
3+
24
from stream import Stream
35

46

@@ -165,4 +167,3 @@ def test_iter(self):
165167

166168
if __name__ == '__main__':
167169
unittest.main()
168-
iterable

0 commit comments

Comments
 (0)