Skip to content

Commit 16010c2

Browse files
committed
simplify CI dependencies setup
1 parent 1141556 commit 16010c2

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ci_extra.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
python -m pip install pytest
27-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+
pip install -r requirements.txt
2827
2928
- name: Lint with pylint
3029
run: |

.github/workflows/ci_feature.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
python -m pip install pytest
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30+
pip install -r requirements.txt
3231
3332
- name: Lint with pylint
3433
run: |

.github/workflows/ci_master.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install pytest
30-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
pip install -r requirements.txt
3130
3231
- name: Lint with pylint
3332
run: |

0 commit comments

Comments
 (0)