Using a makefile
This commit is contained in:
parent
a1c2adf88c
commit
e720096a1c
@ -2,7 +2,5 @@ language: python
|
||||
python:
|
||||
- 2.6
|
||||
- 2.7
|
||||
install:
|
||||
- pip install tox
|
||||
script:
|
||||
- tox
|
||||
- make test
|
||||
|
11
Makefile
Normal file
11
Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
all: test
|
||||
|
||||
deps:
|
||||
@echo "--> Installing dependencies"
|
||||
@pip install tox
|
||||
|
||||
test: deps
|
||||
@echo "--> Running tests"
|
||||
@tox
|
||||
|
||||
.PHONY: all deps test
|
@ -22,8 +22,7 @@ Development
|
||||
Testing
|
||||
=======
|
||||
|
||||
$ sudo pip install tox
|
||||
$ tox
|
||||
$ make test
|
||||
|
||||
License
|
||||
=======
|
||||
|
3
Vagrantfile
vendored
3
Vagrantfile
vendored
@ -1,5 +1,4 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
# encoding: UTF-8
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
config.vm.box = 'hashicorp/precise64'
|
||||
|
Loading…
Reference in New Issue
Block a user