Skip to content

Commit

Permalink
Fixed a problem with coveralls which was not actually find a few tests
Browse files Browse the repository at this point in the history
Reason: I was missing the __init__.py file in a few folders under the
tests folder
  • Loading branch information
nbro committed Feb 18, 2017
1 parent 1c40b10 commit e39e114
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/algorithms/crypto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# File to allow this directory to be treated as a python package.
4 changes: 4 additions & 0 deletions tests/algorithms/dac/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# File to allow this directory to be treated as a python package.
2 changes: 2 additions & 0 deletions tests/algorithms/ode/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# File to allow this directory to be treated as a python package.
4 changes: 4 additions & 0 deletions tests/algorithms/recursion/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# File to allow this directory to be treated as a python package.
2 changes: 2 additions & 0 deletions tests/algorithms/sorting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# File to allow this directory to be treated as a python package.

0 comments on commit e39e114

Please sign in to comment.