Add maths/test_prime_check.py (#1125)

* Add maths/test_prime_check.py

* Add comments on why this file is required
This commit is contained in:
Christian Clauss 2019-08-13 11:50:13 +02:00 committed by GitHub
parent 4fea48072a
commit c74fd0c9bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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