Skip to content

Commit 7a415dc

Browse files
authored
Add lib-dep makefile target (#701)
1 parent a6d7fae commit 7a415dc

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CA_SIGNING_KEY_FILE_PATH := ca-signing-key.pem
1818
.PHONY: all https-certificates sign-https-certificates ca-certificates
1919
.PHONY: lib-version lib-clean lib-test lib-package lib-coverage lib-lint lib-pytest
2020
.PHONY: lib-release-test lib-release lib-profile
21-
.PHONY: lib-flake8, lib-mypy
21+
.PHONY: lib-dep, lib-flake8, lib-mypy
2222
.PHONY: container container-run container-release
2323
.PHONY: devtools dashboard dashboard-clean
2424

@@ -81,6 +81,13 @@ lib-clean:
8181
rm -rf .pytest_cache
8282
rm -rf .hypothesis
8383

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+
8491
lib-lint:
8592
python -m tox -e lint
8693

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,10 +314,10 @@ To start `proxy.py` from source code follow these instructions:
314314
- Install deps
315315

316316
```console
317-
pip install -rrequirements.txt -rrequirements-testing.txt -rrequirements-tunnel.txt
317+
make lib-dep
318318
```
319319

320-
- Run tests
320+
- Optionally, run tests
321321

322322
```console
323323
❯ make

0 commit comments

Comments
 (0)