Skip to content

Commit

Permalink
✅ remove unused function in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseRZapata committed Feb 11, 2024
1 parent 33deb63 commit ab4114f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/test_create_template.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
import os
import re
import subprocess # nosec


def build_files_list(root_dir): # type: ignore
"""Build a list containing absolute paths to the generated files."""
return [
os.path.join(dirpath, file_path)
for dirpath, _, files in os.walk(root_dir)
for file_path in files
]


def test_run_cookiecutter_result(cookies): # type: ignore
"""Runs cookiecutter and checks a couple of things"""
project_name = "data science project template"
Expand Down

0 comments on commit ab4114f

Please sign in to comment.