Skip to content

Commit

Permalink
clean egg from src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Jul 28, 2023
1 parent 8fc4dcb commit cca5d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def clean(session):
with session.chdir(folder):
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("build/wheelhouse", ignore_errors=True)
shutil.rmtree(f"{PROJECT}.egg-info", ignore_errors=True)
shutil.rmtree(f"src/{PROJECT}.egg-info", ignore_errors=True)
shutil.rmtree(".pytest_cache", ignore_errors=True)
shutil.rmtree(".venv", ignore_errors=True)

Expand Down

0 comments on commit cca5d9c

Please sign in to comment.