Skip to content

Commit

Permalink
Add __init__.py file in tests directory
Browse files Browse the repository at this point in the history
This commit introduces an __init__.py file in the tests directory. The file is added to resolve a confusion caused by MyPype when encountering multiple files with the same name (conftest.py) in the tests directory. The issue is meditated by adding an __init__.py.
  • Loading branch information
Altay Sansal committed Feb 29, 2024
1 parent 9e8f24e commit 5b01c14
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Test suite for segy.
This file solely exists because MyPy gets confused by multiple
files with the same name (conftest.py) exist in the tests directory.
It doesn't when you add a __init__.
"""

0 comments on commit 5b01c14

Please sign in to comment.