Skip to content

Commit f8b53c1

Browse files
committed
install ALL possible requirements on CI
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent c151ffd commit f8b53c1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.azure_pipelines/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
displayName: upgrade pip and setuptools
3131
3232
- script: |
33-
pip install -r requirements.txt
33+
pip install -r CI_REQUIREMENTS.txt
3434
displayName: Install dependencies
3535
3636
- ${{ if eq(parameters.kind, 'cython') }}:

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- script: |
1616
python -m pip install --upgrade pip
1717
pip install -U setuptools
18-
pip install -r requirements.txt
18+
pip install -r CI_REQUIREMENTS.txt
1919
pip install -U pytest pytest-sugar pytest-flake8 flake8-bugbear flake8-docstrings
2020
displayName: 'Install dependencies'
2121
@@ -42,7 +42,7 @@ jobs:
4242
- script: |
4343
python -m pip install --upgrade pip
4444
pip install -U setuptools
45-
pip install -r requirements.txt
45+
pip install -r CI_REQUIREMENTS.txt
4646
pip install -U pylint pylint_junit isort[pyproject,requirements]
4747
displayName: 'Install dependencies'
4848
@@ -73,7 +73,7 @@ jobs:
7373
- script: |
7474
python -m pip install --upgrade pip
7575
pip install -U setuptools
76-
pip install -r requirements.txt
76+
pip install -r CI_REQUIREMENTS.txt
7777
pip install -U "mypy>=0.700"
7878
displayName: 'Install dependencies'
7979

0 commit comments

Comments
 (0)