Makefile for automated testing (no more drone)

pull/8/head 0.5.7
J. Fernando Sánchez 8 years ago
parent 0454fb1afe
commit 5d5de0bc50

3
.gitignore vendored

@ -4,4 +4,5 @@
dist
build
README.html
__pycache__
__pycache__
Dockerfile-*

@ -0,0 +1,3 @@
from python:{{PYVERSION}}-onbuild
ENTRYPOINT ["python", "-m", "senpy", "-f", ".", "--host", "0.0.0.0"]

@ -2,6 +2,7 @@ include requirements.txt
include test-requirements.txt
include README.md
include senpy/context.jsonld
include senpy/VERSION
graft senpy/plugins
graft senpy/schemas
graft senpy/templates

@ -0,0 +1,29 @@
PYVERSIONS=2.7 3.4
NAME=senpy
REPO=gsiupm
VERSION=$(shell cat $(NAME)/VERSION)
all: build run
dockerfiles: $(addprefix Dockerfile-,$(PYVERSIONS))
Dockerfile-%: Dockerfile.template
sed "s/{{PYVERSION}}/$*/" Dockerfile.template > Dockerfile-$*
build: $(addprefix build-, $(PYVERSIONS))
build-%: Dockerfile-%
docker build -t '$(REPO)/$(NAME):$(VERSION)-python$*' -f Dockerfile-$* .;
test: $(addprefix test-,$(PYVERSIONS))
test-%: build-%
docker run --rm -w /usr/src/app/ --entrypoint=/usr/local/bin/python -ti '$(REPO)/$(NAME):$(VERSION)-python$*' setup.py test ;
test_pip-%:
docker run --rm -ti python:$* pip -q install senpy ;
test_pip: $(addprefix test_pip-,$(PYVERSIONS))
.PHONY: test test-% build-% build test test_pip

@ -0,0 +1 @@
0.5.7

@ -18,4 +18,8 @@
Sentiment analysis server in Python
"""
__version__ = "0.5.6"
import os
VFILE = os.path.join(os.path.dirname(__file__), "VERSION")
with open(VFILE, 'r') as f:
__version__ = f.read().strip()

@ -15,7 +15,8 @@ except AttributeError:
install_reqs = [str(ir.req) for ir in install_reqs]
test_reqs = [str(ir.req) for ir in test_reqs]
exec(open('senpy/__init__.py').read())
with open('senpy/VERSION') as f:
__version__ = f.read().strip()
setup(
name='senpy',

Loading…
Cancel
Save