Docker tests fixes to install dependencies

This commit is contained in:
Gavin Aguiar 2024-04-03 11:10:42 -05:00
Родитель 30789ed5ca
Коммит 64d5b21c73
4 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -32,8 +32,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre python -m pip install -r requirements.txt
python -m pip install -U -e .[dev]
python setup.py build python setup.py build
- name: Running 3.7 Tests - name: Running 3.7 Tests
if: matrix.python-version == 3.7 if: matrix.python-version == 3.7

Просмотреть файл

@ -29,6 +29,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install -r requirements.txt
python setup.py build python setup.py build
- name: Running 3.7 Tests - name: Running 3.7 Tests
if: matrix.python-version == 3.7 if: matrix.python-version == 3.7

Просмотреть файл

@ -49,6 +49,7 @@ jobs:
python-version: ${{ env.python_version }} python-version: ${{ env.python_version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install -r requirements.txt
python setup.py build python setup.py build
- name: Running 3.7 Tests - name: Running 3.7 Tests
if: env.python_version == 3.7 if: env.python_version == 3.7

Просмотреть файл

@ -29,6 +29,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install -r requirements.txt
python setup.py build python setup.py build
- name: Running 3.7 Tests - name: Running 3.7 Tests
if: matrix.python-version == 3.7 if: matrix.python-version == 3.7