diff --git a/.github/workflows/notebook-tests.yml b/.github/workflows/notebook-tests.yml index 4137d09c..1d55cbe8 100644 --- a/.github/workflows/notebook-tests.yml +++ b/.github/workflows/notebook-tests.yml @@ -33,13 +33,13 @@ jobs: python -m pip install --upgrade pip - name: Install core dependencies run: | - pip install -r requirements.txt --no-cache-dir + pip install -r requirements.txt - name: Install deep learning dependencies run: | - pip install -r requirements-deeplearning.txt --no-cache-dir + pip install -r requirements-deeplearning.txt - name: Install test dependencies run: | - pip install -r requirements-test.txt --no-cache-dir + pip install -r requirements-test.txt - name: Test with pytest run: | # pytest diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index e09a699c..a8bac22d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -33,13 +33,13 @@ jobs: python -m pip install --upgrade pip - name: Install core dependencies run: | - pip install -r requirements.txt --no-cache-dir + pip install -r requirements.txt - name: Install deep learning dependencies run: | - pip install -r requirements-deeplearning.txt --no-cache-dir + pip install -r requirements-deeplearning.txt - name: Install test dependencies run: | - pip install -r requirements-test.txt --no-cache-dir + pip install -r requirements-test.txt - name: Test with pytest run: | # pytest