Add docker support for local unit testing
Addresses consistency across different OS's by making it very similar to the base Travis image.
This commit is contained in:
parent
a09471ac6c
commit
8ba1b5fc35
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM python:3.6
|
||||||
|
|
||||||
|
ADD . /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN pip install tox
|
4
Makefile
Normal file
4
Makefile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
test:
|
||||||
|
find . -name "*.pyc" -delete
|
||||||
|
docker build -t sanic/test-image .
|
||||||
|
docker run -t sanic/test-image tox
|
Loading…
x
Reference in New Issue
Block a user