Remove test command in make file since test are run from insede container

This commit is contained in:
Jose Angel Sanchez Castillejos 2019-05-28 22:59:23 -05:00 committed by Ben Letham
parent 95d203894d
commit 2102a5421d
3 changed files with 15 additions and 6 deletions

View file

@ -1,6 +1,17 @@
FROM python:alpine3.7
FROM python:3.7-stretch
WORKDIR /usr/src/app
RUN apt-get -y install libc-dev
RUN pip install -r python/requirements.txt
RUN pip install pip==19.1.1
COPY python/requirements.txt .
RUN pip install -r requirements.txt
COPY . .
WORKDIR python
RUN python setup.py install
WORKDIR /

View file

@ -6,6 +6,3 @@ py-shell:
shell:
docker-compose run package bash
test:
docker-compose run package python -m unittest

View file

@ -7,3 +7,4 @@ lunardate>=0.1.5
convertdate>=2.1.2
holidays>=0.9.5
setuptools-git>=1.2
ipython==7.5.0