adding travis.yml configuration

This commit is contained in:
Dan Funk 2020-02-05 14:54:13 -05:00
parent ff63978da0
commit 3b827f2bc9
2 changed files with 12 additions and 5 deletions

12
.travis.yml Normal file
View File

@ -0,0 +1,12 @@
language: python
python:
- "3.6"
- "3.7"
- "3.8"
install:
- pip install pipenv pytest
- pipenv install
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
# command to run tests
script:
- pytest

View File

@ -19,11 +19,6 @@ RUN pipenv install --dev
# include rejoiner code (gets overriden by local changes) # include rejoiner code (gets overriden by local changes)
COPY . /crc-workflow/ COPY . /crc-workflow/
# run migrations
ENV FLASK_APP=./crc/__init__.py
RUN pipenv run flask db upgrade
RUN pipenv run flask load-example-data
# run webserver by default # run webserver by default
CMD ["pipenv", "run", "python", "./run.py"] CMD ["pipenv", "run", "python", "./run.py"]