Skip to content

Commit

Permalink
Restore Python <3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed Feb 8, 2024
1 parent dbfa2ba commit 02ebf34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_deploy_egg.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ def tearDown(self):
def test_parses_project_information_correctly(self):
# this test's assertions are based on the values
# defined on this folder's setup.py file
shutil.copytree('tests/samples/deploy_egg_sample_project', self.tmp_dir, dirs_exist_ok=True)
shutil.rmtree(self.tmp_dir)
shutil.copytree('tests/samples/deploy_egg_sample_project', self.tmp_dir)
os.chdir(self.tmp_dir)

data = self.call_main_and_check_request_data()
Expand Down

0 comments on commit 02ebf34

Please sign in to comment.