ad7409b567
* Adding integration tests with inlines * Adding more tests * FIx make file * Setup CI build matrix to work with integration tests * Try again * Fix workflow synctax * Clean up workflow * Format and some lint stuff * Try codecov * yml * More Testing * Minor lint things * Update * Try again for codecov * Updates * Try? * Ignore quotes * Exclude test project * try this? * checkout required * Rename * clean up configs * Fix * Allow to fail * ignores * FInish the integration tests for cache * Fix workflow yml * fix * Try up again * TRy again * Fix * Fix * Fix tests Co-authored-by: Thu Trang Pham <thu@joinmodernhealth.com>
13 lines
327 B
Docker
13 lines
327 B
Docker
ARG PYTHON_VERSION=3.8
|
|
FROM python:${PYTHON_VERSION}
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV USE_DOCKER=true
|
|
WORKDIR /code
|
|
COPY . /code/
|
|
ARG DJANGO_VERSION="3.1.7"
|
|
RUN pip install django==${DJANGO_VERSION}
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install -e .
|
|
ARG SELENIUM_VERSION="4.0.0a7"
|
|
RUN pip install selenium~=${SELENIUM_VERSION}
|