~andrewjbeach/juju-ci-tools/make-local-patcher

611.2.4 by Curtis Hovey
Added makefile for testing and lint.
1
test:
611.2.7 by Curtis Hovey
Remove unused HOME.
2
	python -m unittest discover -vv . -p '*.py'
611.2.4 by Curtis Hovey
Added makefile for testing and lint.
3
lint:
706.1.1 by Aaron Bentley
Switch to flake8 and fix lint.
4
	flake8 .
772.1.1 by Aaron Bentley
Update dependency handling.
5
apt-update:
794.1.1 by Curtis Hovey
Always update juju on slaves and master.
6
	sudo apt-get -qq update
774.2.4 by Aaron Bentley
Revert dependency change.
7
juju-ci-tools.common_0.1.0-0_all.deb: apt-update
772.1.1 by Aaron Bentley
Update dependency handling.
8
	sudo apt-get install -y equivs
9
	equivs-build juju-ci-tools-common
774.2.4 by Aaron Bentley
Revert dependency change.
10
install-deps: juju-ci-tools.common_0.1.0-0_all.deb apt-update
11
	sudo dpkg -i juju-ci-tools.common_0.1.0-0_all.deb || true
772.1.1 by Aaron Bentley
Update dependency handling.
12
	sudo apt-get install -y -f
794.1.1 by Curtis Hovey
Always update juju on slaves and master.
13
	sudo apt-get install -y juju-local juju
772.1.1 by Aaron Bentley
Update dependency handling.
14
.PHONY: lint test apt-update install-deps