test_importable.py (231B)
1 # File: test_importable.py 2 # Created Date: Sunday December 12th 2021 3 # Author: Steven Atkinson ([email protected]) 4 5 import pytest 6 7 8 def test_importable(): 9 import nam # noqa F401 10 11 12 if __name__ == "__main__": 13 pytest.main()