Skip to content

Commit c33a93a

Browse files
committed
Don't install all dependencies in the linting task
1 parent 9655036 commit c33a93a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.taskcluster.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ tasks:
6565
- sh
6666
- -lxce
6767
- "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks &&
68-
cd /src/tools && python setup.py install &&
69-
cd /src/bot && pip install --quiet . && pip install --quiet -r requirements-dev.txt &&
70-
cd /src/backend && pip install --quiet . && pip install --quiet -r requirements-dev.txt &&
68+
cd /src/bot && pip install --quiet -r requirements-dev.txt &&
69+
cd /src/backend && pip install --quiet -r requirements-dev.txt &&
7170
cd /src && pre-commit run -a"
7271
metadata:
7372
name: "Code Coverage checks: linting"

0 commit comments

Comments
 (0)