bugfix: install --only dependencies works in env (#13090)

* bugfix: install --only dependents works in env

includes regression testing
This commit is contained in:
Greg Becker
2019-10-14 17:50:38 -07:00
committed by GitHub
parent a63e64f1c4
commit 3f46f03c83
4 changed files with 73 additions and 19 deletions

View File

@@ -13,8 +13,10 @@ class DependentInstall(Package):
url = "http://www.example.com/a-1.0.tar.gz"
version('1.0', '0123456789abcdef0123456789abcdef')
version('2.0', '0123456789abcdef0123456789abcdef')
depends_on('dependency-install')
depends_on('dependency-install@2.0', when='@2.0')
depends_on('dependency-install@1.0', when='@1.0')
def install(self, spec, prefix):
touch(join_path(prefix, 'an_installation_file'))