Skip to content

Commit

Permalink
🐛 remove test tearDownModule method
Browse files Browse the repository at this point in the history
  • Loading branch information
ferzcam committed Mar 20, 2024
1 parent fbfd0ee commit e8b57c8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ def setUpModule():
PPIYeastSlimDataset()


def tearDownModule():
os.remove('ppi_yeast_slim.tar.gz')
os.remove('gda_human_el.tar.gz')
os.remove('gda_mouse_el.tar.gz')
os.remove('family.tar.gz')
shutil.rmtree('ppi_yeast_slim')
shutil.rmtree('gda_human_el')
shutil.rmtree('gda_mouse_el')
shutil.rmtree('family')
# def tearDownModule():
# os.remove('ppi_yeast_slim.tar.gz')
# os.remove('gda_human_el.tar.gz')
# os.remove('gda_mouse_el.tar.gz')
# os.remove('family.tar.gz')
# shutil.rmtree('ppi_yeast_slim')
# shutil.rmtree('gda_human_el')
# shutil.rmtree('gda_mouse_el')
# shutil.rmtree('family')



Expand Down
18 changes: 9 additions & 9 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def pytest_configure(config):
PPIYeastSlimDataset()


def pytest_unconfigure(config):
os.remove('ppi_yeast_slim.tar.gz')
os.remove('gda_human_el.tar.gz')
os.remove('gda_mouse_el.tar.gz')
os.remove('family.tar.gz')
shutil.rmtree('ppi_yeast_slim')
shutil.rmtree('gda_human_el')
shutil.rmtree('gda_mouse_el')
shutil.rmtree('family')
# def pytest_unconfigure(config):
# os.remove('ppi_yeast_slim.tar.gz')
# os.remove('gda_human_el.tar.gz')
# os.remove('gda_mouse_el.tar.gz')
# os.remove('family.tar.gz')
# shutil.rmtree('ppi_yeast_slim')
# shutil.rmtree('gda_human_el')
# shutil.rmtree('gda_mouse_el')
# shutil.rmtree('family')



Expand Down

0 comments on commit e8b57c8

Please sign in to comment.