Skip to content

Commit

Permalink
install ALL possible requirements on CI
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
  • Loading branch information
penguinolog committed May 24, 2019
1 parent c151ffd commit f8b53c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .azure_pipelines/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
displayName: upgrade pip and setuptools
- script: |
pip install -r requirements.txt
pip install -r CI_REQUIREMENTS.txt
displayName: Install dependencies
- ${{ if eq(parameters.kind, 'cython') }}:
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- script: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -r requirements.txt
pip install -r CI_REQUIREMENTS.txt
pip install -U pytest pytest-sugar pytest-flake8 flake8-bugbear flake8-docstrings
displayName: 'Install dependencies'
Expand All @@ -42,7 +42,7 @@ jobs:
- script: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -r requirements.txt
pip install -r CI_REQUIREMENTS.txt
pip install -U pylint pylint_junit isort[pyproject,requirements]
displayName: 'Install dependencies'
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- script: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -r requirements.txt
pip install -r CI_REQUIREMENTS.txt
pip install -U "mypy>=0.700"
displayName: 'Install dependencies'
Expand Down

0 comments on commit f8b53c1

Please sign in to comment.