Skip to content

Commit edf0e6f

Browse files
authoredMay 3, 2022
Revert pip install editable change [ci] (#180)
1 parent db70f4e commit edf0e6f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

‎.github/workflows/ci.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request: ~
99

1010
env:
11-
CACHE_VERSION: 2
11+
CACHE_VERSION: 3
1212
DEFAULT_PYTHON: 3.8
1313
LIB_FOLDER: python_typing_update
1414
PRE_COMMIT_CACHE: ~/.cache/pre-commit
@@ -50,7 +50,7 @@ jobs:
5050
. venv/bin/activate
5151
python -m pip install -U pip setuptools wheel
5252
pip install -U -r requirements.txt -r requirements_test.txt
53-
pip install .
53+
pip install -e .
5454
- name: Generate pre-commit restore key
5555
id: generate-pre-commit-key
5656
run: >-
@@ -107,7 +107,6 @@ jobs:
107107
- name: Run formatting check
108108
run: |
109109
. venv/bin/activate
110-
pip install -e .
111110
pre-commit run --all-files
112111
113112
pylint:
@@ -137,7 +136,6 @@ jobs:
137136
- name: Run pylint
138137
run: |
139138
. venv/bin/activate
140-
pip install -e .
141139
pylint ${{ env.LIB_FOLDER }} tests
142140
143141
mypy:
@@ -207,7 +205,7 @@ jobs:
207205
. venv/bin/activate
208206
python -m pip install -U pip setuptools wheel
209207
pip install -U -r requirements.txt -r requirements_test.txt
210-
pip install .
208+
pip install -e .
211209
- name: Run pytest
212210
run: |
213211
. venv/bin/activate

0 commit comments

Comments
 (0)