Skip to content

Commit 8e518b8

Browse files
committed
Update to gitignore
1 parent 11f5994 commit 8e518b8

4 files changed

Lines changed: 14 additions & 1 deletion

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,8 @@ cython_debug/
166166
.vscode/
167167

168168
# Hidden files
169-
.DS_Store
169+
.DS_Store
170+
.pymon
171+
172+
# Unit test output
173+
junit/

pytest.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[pytest]
2+
pythonpath = src

tests/unit/__init__.py

Whitespace-only changes.

tests/unit/test_app.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def test_import_app():
2+
from app.main import main
3+
print('app imported')
4+
main()
5+
6+
if __name__ == '__main__':
7+
test_import_app()

0 commit comments

Comments
 (0)