8000 Bugfixes with package generation by tclose · Pull Request #16 · nipype/nipype2pydra · GitHub
[go: up one dir, main page]

Skip to content

Bugfixes with package generation #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 20, 2024
Prev Previous commit
renamed conftest resource template to conftest_ to avoid confusing th…
…e pytest
  • Loading branch information
tclose committed Mar 19, 2024
commit 89780656c8a6f3c8d0898f5d052147a486b986f8
1 change: 1 addition & 0 deletions nipype2pydra/pkg_gen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ def copy_ignore(_, names):

related_pkgs_dir = pkg_dir / "related-packages"
shutil.copytree(TEMPLATES_DIR / "related-packages", related_pkgs_dir)
os.rename(related_pkgs_dir / "conftest_.py", related_pkgs_dir / "conftest.py")

# Add modified README
os.unlink(pkg_dir / "README.md")
Expand Down
0