mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
c74fd0c9bf
* Add maths/test_prime_check.py * Add comments on why this file is required
9 lines
225 B
Python
9 lines
225 B
Python
"""
|
|
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()
|