Include released yadm versions also in testenv
This commit is contained in:
parent
d926fb3e8b
commit
64da1a6bee
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -146,6 +146,10 @@ testenv:
|
|||
python3 -m venv --clear testenv
|
||||
testenv/bin/pip3 install --upgrade pip setuptools
|
||||
testenv/bin/pip3 install --upgrade -r test/requirements.txt;
|
||||
@for v in $$(sed -rn -e 's:.*/yadm-([0-9.]+)$$:\1:p' test/Dockerfile); do \
|
||||
git show $$v:yadm > testenv/bin/yadm-$$v; \
|
||||
chmod +x testenv/bin/yadm-$$v; \
|
||||
done
|
||||
@echo
|
||||
@echo 'To activate this test environment type:'
|
||||
@echo ' source testenv/bin/activate'
|
||||
|
|
Loading…
Reference in a new issue