yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #91557
[Bug 1521079] Re: can't install requirements by Makefile
These targets no longer exist in the makefile, and these days we use tox
rather than the Makefile.
Closing
** Changed in: cloud-init
Status: Confirmed => Won't Fix
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to cloud-init.
https://bugs.launchpad.net/bugs/1521079
Title:
can't install requirements by Makefile
Status in cloud-init:
Won't Fix
Bug description:
`*requirements` target name is wrong, isn't it?.
```
$ make pip-test-requirements
make: Nothing to be done for 'pip-test-requirements'.
$ make pip-test-requirements
Installing cloud-init test dependencies...
pip install -r "pip-test-requirements.txt" -q
Could not open requirements file: [Errno 2] No such file or directory: 'pip-test-requirements.txt'
Makefile:30: recipe for target 'pip-test-requirements' failed
make: *** [pip-test-requirements] Error 1
```
Makefile
```
pip-requirements:
@echo "Installing cloud-init dependencies..."
$(PIP_INSTALL) -r "$@.txt" -q
pip-test-requirements:
@echo "Installing cloud-init test dependencies..."
$(PIP_INSTALL) -r "$@.txt" -q
```
```
$ ls -l *requirements.txt
-rw-r--r-- 1 vagrant vagrant 948 11月 30 15:12 requirements.txt
-rw-r--r-- 1 vagrant vagrant 71 11月 30 15:12 test-requirements.txt
```
To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1521079/+subscriptions
References