Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Add support for use of requirements files #71
Conversation
|
LGTM, |
| @@ -117,6 +117,9 @@ A sample `tests.yaml` file:: | ||
| - juju-deployer | ||
| - amulet | ||
| - requests | ||
| + requirements: | ||
| + - test-requirements.txt | ||
| + - requirements.txt |
|
LGTM after my one comment is addressed. Thanks @javacruft! |
tvansteenburgh
merged commit e2d70cc
into
juju-solutions:master
Nov 9, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
javacruft commentedNov 9, 2016
Some charms use tox to setup the virtualenv for bundletester to
run inside, including dependencies for the actual amulet tests
that get executed.
Add support to allow the requirements.txt/test-requirements.txt
files used in these configurations to also be used by bundletester
in a tests.yaml file, using a new requirements list:
requirements:
- test-requirements.txt
- requirements.txt
Each file is verified to actually exist prior to use when installing
dependencies for the tests.
Closes #65