Using a makefile
This commit is contained in:
parent
a1c2adf88c
commit
e720096a1c
@ -2,7 +2,5 @@ language: python
|
|||||||
python:
|
python:
|
||||||
- 2.6
|
- 2.6
|
||||||
- 2.7
|
- 2.7
|
||||||
install:
|
|
||||||
- pip install tox
|
|
||||||
script:
|
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
|
Testing
|
||||||
=======
|
=======
|
||||||
|
|
||||||
$ sudo pip install tox
|
$ make test
|
||||||
$ tox
|
|
||||||
|
|
||||||
License
|
License
|
||||||
=======
|
=======
|
||||||
|
3
Vagrantfile
vendored
3
Vagrantfile
vendored
@ -1,5 +1,4 @@
|
|||||||
# -*- mode: ruby -*-
|
# encoding: UTF-8
|
||||||
# vi: set ft=ruby :
|
|
||||||
|
|
||||||
Vagrant.configure('2') do |config|
|
Vagrant.configure('2') do |config|
|
||||||
config.vm.box = 'hashicorp/precise64'
|
config.vm.box = 'hashicorp/precise64'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user