Update makefile to install from updated requirements files
This commit is contained in:
parent
d70c190622
commit
01e9c38447
15
Makefile
15
Makefile
@ -23,7 +23,15 @@ pylint:
|
||||
pyflakes:
|
||||
pyflakes $(PY_FILES)
|
||||
|
||||
test:
|
||||
requirements:
|
||||
@echo "Installing cloud-init dependencies..."
|
||||
sudo pip install -r "$@.txt" -q
|
||||
|
||||
test-requirements:
|
||||
@echo "Installing cloud-init test dependencies..."
|
||||
sudo pip install -r "$@.txt" -q
|
||||
|
||||
test: requirements test-requirements
|
||||
@nosetests $(noseopts) tests/
|
||||
|
||||
check_version:
|
||||
@ -36,8 +44,8 @@ check_version:
|
||||
2to3 $(PY_FILES)
|
||||
|
||||
clean:
|
||||
rm -rf /var/log/cloud-init.log \
|
||||
/var/lib/cloud/
|
||||
rm -rf /var/log/cloud-init.log /var/lib/cloud/
|
||||
find . -type f -name "*.pyc" -delete
|
||||
|
||||
yaml:
|
||||
@$(CWD)/tools/validate-yaml.py $(YAML_FILES)
|
||||
@ -49,4 +57,5 @@ deb:
|
||||
./packages/bddeb
|
||||
|
||||
.PHONY: test pylint pyflakes 2to3 clean pep8 rpm deb yaml check_version
|
||||
.PHONE: test-requirements requirements
|
||||
|
||||
|
6
test-requirements.txt
Normal file
6
test-requirements.txt
Normal file
@ -0,0 +1,6 @@
|
||||
httpretty>=0.7.1
|
||||
mocker
|
||||
nose
|
||||
pep8
|
||||
pyflakes
|
||||
pylint
|
@ -1 +0,0 @@
|
||||
httpretty>=0.7.1
|
@ -19,10 +19,10 @@ if ! find_root; then
|
||||
"exist in the cloud-init root directory."
|
||||
fi
|
||||
|
||||
REQUIRES="$ROOT_DIR/Requires"
|
||||
REQUIRES="$ROOT_DIR/requirements.txt"
|
||||
|
||||
if [ ! -e "$REQUIRES" ]; then
|
||||
fail "Unable to find 'Requires' file located at '$REQUIRES'"
|
||||
fail "Unable to find 'requirements.txt' file located at '$REQUIRES'"
|
||||
fi
|
||||
|
||||
# Filter out comments and empty lines
|
||||
|
Loading…
Reference in New Issue
Block a user