Skip to content

Commit

Permalink
Drop TestFeedstockIO_w_Git as everything has been consolidated.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Nov 5, 2016
1 parent 9546eb4 commit 9e0f7e3
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions conda_smithy/tests/test_feedstock_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,25 +275,5 @@ def tearDown(self):
del self.tmp_dir


class TestFeedstockIO_w_Git(unittest.TestCase):
def setUp(self):
self.old_dir = os.getcwd()

self.tmp_dir = tempfile.mkdtemp()
self.repo = git.Repo.init(self.tmp_dir)
os.chdir(self.tmp_dir)

with io.open(os.path.abspath(".keep"), "w", encoding="utf-8") as fh:
fh.write("")


def tearDown(self):
os.chdir(self.old_dir)
del self.old_dir

shutil.rmtree(self.tmp_dir)
del self.tmp_dir


if __name__ == '__main__':
unittest.main()

0 comments on commit 9e0f7e3

Please sign in to comment.