Using a makefile

This commit is contained in:
John Dewey 2014-06-02 10:54:55 -07:00
parent a1c2adf88c
commit e720096a1c
4 changed files with 14 additions and 7 deletions

View File

@ -2,7 +2,5 @@ language: python
python:
- 2.6
- 2.7
install:
- pip install tox
script:
- tox
- make test

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
all: test
deps:
@echo "--> Installing dependencies"
@pip install tox
test: deps
@echo "--> Running tests"
@tox
.PHONY: all deps test

View File

@ -22,8 +22,7 @@ Development
Testing
=======
$ sudo pip install tox
$ tox
$ make test
License
=======

3
Vagrantfile vendored
View File

@ -1,5 +1,4 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
# encoding: UTF-8
Vagrant.configure('2') do |config|
config.vm.box = 'hashicorp/precise64'