8181 ${{ runner.os }}-${{ matrix.pandas }}-pip-
8282 - run : |
8383 pip install --upgrade pip setuptools wheel
84- pip install -r requirements.txt "${{ matrix.pandas }}" "${{ matrix.numpy }}"
85- pip install -r requirements-test.txt
84+ pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
8685 - run : echo "YDATA_PROFILING_NO_ANALYTICS=False" >> $GITHUB_ENV
8786 - run : make install
8887
@@ -130,8 +129,7 @@ jobs:
130129 ${{ runner.os }}-${{ matrix.pandas }}-pip-
131130 - run : |
132131 pip install --upgrade pip setuptools wheel
133- pip install -r requirements.txt "${{ matrix.pandas }}" "${{ matrix.numpy }}"
134- pip install -r requirements-test.txt
132+ pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
135133 echo "YDATA_PROFILING_NO_ANALYTICS=False" >> $GITHUB_ENV
136134 - run : make install
137135
@@ -146,8 +144,7 @@ jobs:
146144 ${{ runner.os }}-${{ matrix.pandas }}-pip-
147145 - run : |
148146 pip install --upgrade pip setuptools wheel
149- pip install -r requirements.txt "${{ matrix.pandas }}" "${{ matrix.numpy }}"
150- pip install -r requirements-test.txt
147+ pip install ".[test]" "${{ matrix.pandas }}" "${{ matrix.numpy }}"
151148 - run : make install
152149 - run : make test_cov
153150 - run : codecov -F py${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.pandas }}-${{ matrix.numpy }}
@@ -205,14 +202,13 @@ jobs:
205202 - run : |
206203 pip install --upgrade pip setuptools wheel
207204 pip install pytest-spark>=0.6.0 pyarrow==1.0.1 pyspark=="${{ matrix.spark }}"
208- pip install -r requirements.txt
209- pip install -r requirements-test.txt
205+ pip install ".[test]"
210206 pip install "${{ matrix.pandas }}" "${{ matrix.numpy }}"
211207 - if : ${{ matrix.spark != '3.0.1' }}
212208 run : echo "ARROW_PRE_0_15_IPC_FORMAT=1" >> $GITHUB_ENV
213209 - run : echo "SPARK_LOCAL_IP=127.0.0.1" >> $GITHUB_ENV
214210 - run : make install
215211 - run : make install-spark-ci
216- - run : pip install -r requirements-spark.txt # Make sure the proper version of pandas is install after everything
212+ - run : pip install ".[spark]" # Make sure the proper version of pandas is install after everything
217213 - run : make test_spark
218214
0 commit comments