Add integration tests (#20)
* 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>
This commit is contained in:
+8
-3
@@ -1,7 +1,12 @@
|
||||
FROM python:3
|
||||
ARG PYTHON_VERSION=3.8
|
||||
FROM python:${PYTHON_VERSION}
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
ENV USE_DOCKER=true
|
||||
WORKDIR /code
|
||||
COPY requirements.txt /code/
|
||||
RUN pip install -r requirements.txt
|
||||
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}
|
||||
|
||||
Reference in New Issue
Block a user