I have a personal package MyPackage that depends on another personal package MyPackageDependency. I am using the sources section of the MyPackage Project.toml file to point to the MyPackageDependency GitHub repository.
However, if I want to test some changes to MyPackageDependency with MyPackage before committing and pushing them, then I need to rm MyPackageDependency from the MyPackage environment, dev it back in via a local path, and then change its “sources” line from a URL to a path in the Project.toml file.
Then when I’m happy with the MyPackageDependency changes, I need to remember to revert all the MyPackage environment and .toml changes before I commit and push MyPackage again.
Is there a better process or flag I can use to streamline this process of testing local dependency package changes’ effect on a package without altering the code of the package itself?