mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
e7b6d2824a
* Change to https. * Revert the py_tf file.
9 lines
226 B
Python
9 lines
226 B
Python
"""
|
|
Minimalist file that allows pytest to find and run the Test unittest. For details, see:
|
|
https://doc.pytest.org/en/latest/goodpractices.html#conventions-for-python-test-discovery
|
|
"""
|
|
|
|
from .prime_check import Test
|
|
|
|
Test()
|