Skip to content

Commit d82d35b

Browse files
cclaussstokhos
authored andcommitted
Add maths/test_prime_check.py (TheAlgorithms#1125)
* Add maths/test_prime_check.py * Add comments on why this file is required
1 parent 13fa9df commit d82d35b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

maths/test_prime_check.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"""
2+
Minimalist file that allows pytest to find and run the Test unittest. For details, see:
3+
http://doc.pytest.org/en/latest/goodpractices.html#conventions-for-python-test-discovery
4+
"""
5+
6+
from .prime_check import Test
7+
8+
Test()

0 commit comments

Comments
 (0)