diff --git a/Dockerfile b/Dockerfile index 3ed2a5f..a5a4d85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,5 +31,5 @@ USER airflow RUN pip install --no-cache-dir --user 'apache-airflow[microsoft.mssql,google_auth]' # Copy and install requirements.txt -COPY requirements.txt / -RUN pip install --no-cache-dir -r /requirements.txt +COPY tests-requirements.txt / +RUN pip install --no-cache-dir -r /tests-requirements.txt diff --git a/requirements.txt b/requirements.txt index ed35915..4b7b704 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,2 @@ -s3fs==2023.1.0 -ipdb==0.13.11 -pytest==7.2.1 -mock==5.0.1 -pytest-mock==3.10.0 -unidecode==1.2.0 -xlrd==1.2.0 -ijson==3.0.4 -openpyxl==3.0.7 \ No newline at end of file +pandas==1.5.2,<2 +unidecode==1.2.0 \ No newline at end of file diff --git a/tests-requirements.txt b/tests-requirements.txt new file mode 100644 index 0000000..ed35915 --- /dev/null +++ b/tests-requirements.txt @@ -0,0 +1,9 @@ +s3fs==2023.1.0 +ipdb==0.13.11 +pytest==7.2.1 +mock==5.0.1 +pytest-mock==3.10.0 +unidecode==1.2.0 +xlrd==1.2.0 +ijson==3.0.4 +openpyxl==3.0.7 \ No newline at end of file