We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dub test fails to compile for subpackage dependending on another subpackage in the subpackage directory.
dub test
# top-level dub.sdl name "bug" dependency ":foo" version="*" dependency ":bar" version="*" subPackage "foo" subPackage "bar"
# foo/dub.sdl name "foo" dependency "bug:bar" path="../bar"
# bar/dub.sdl name "bar"
dub test in the top-level directory works fine, but cd into foo and dub test fails with Sub package "bar:bar" doesn't exist.
Sub package "bar:bar" doesn't exist.
It should be possible to test subpackages separately.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
System information
Bug Description
dub test
fails to compile for subpackage dependending on another subpackage in the subpackage directory.How to reproduce?
dub test
in the top-level directory works fine, but cd into foo anddub test
fails withSub package "bar:bar" doesn't exist.
Expected Behavior
It should be possible to test subpackages separately.
The text was updated successfully, but these errors were encountered: