File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ CA_SIGNING_KEY_FILE_PATH := ca-signing-key.pem
18
18
.PHONY : all https-certificates sign-https-certificates ca-certificates
19
19
.PHONY : lib-version lib-clean lib-test lib-package lib-coverage lib-lint lib-pytest
20
20
.PHONY : lib-release-test lib-release lib-profile
21
- .PHONY : lib-flake8, lib-mypy
21
+ .PHONY : lib-dep, lib- flake8, lib-mypy
22
22
.PHONY : container container-run container-release
23
23
.PHONY : devtools dashboard dashboard-clean
24
24
@@ -81,6 +81,13 @@ lib-clean:
81
81
rm -rf .pytest_cache
82
82
rm -rf .hypothesis
83
83
84
+ lib-dep :
85
+ pip install \
86
+ -r requirements.txt \
87
+ -r requirements-testing.txt \
88
+ -r requirements-release.txt \
89
+ -r requirements-tunnel.txt
90
+
84
91
lib-lint :
85
92
python -m tox -e lint
86
93
Original file line number Diff line number Diff line change @@ -314,10 +314,10 @@ To start `proxy.py` from source code follow these instructions:
314
314
- Install deps
315
315
316
316
``` console
317
- ❯ pip install -rrequirements.txt -rrequirements-testing.txt -rrequirements-tunnel.txt
317
+ ❯ make lib-dep
318
318
```
319
319
320
- - Run tests
320
+ - Optionally, run tests
321
321
322
322
``` console
323
323
❯ make
You can’t perform that action at this time.
0 commit comments