Skip to content

Commit

Permalink
Add lib-dep makefile target (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavsingh authored Nov 7, 2021
1 parent a6d7fae commit 7a415dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CA_SIGNING_KEY_FILE_PATH := ca-signing-key.pem
.PHONY: all https-certificates sign-https-certificates ca-certificates
.PHONY: lib-version lib-clean lib-test lib-package lib-coverage lib-lint lib-pytest
.PHONY: lib-release-test lib-release lib-profile
.PHONY: lib-flake8, lib-mypy
.PHONY: lib-dep, lib-flake8, lib-mypy
.PHONY: container container-run container-release
.PHONY: devtools dashboard dashboard-clean

Expand Down Expand Up @@ -81,6 +81,13 @@ lib-clean:
rm -rf .pytest_cache
rm -rf .hypothesis

lib-dep:
pip install \
-r requirements.txt \
-r requirements-testing.txt \
-r requirements-release.txt \
-r requirements-tunnel.txt

lib-lint:
python -m tox -e lint

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ To start `proxy.py` from source code follow these instructions:
- Install deps

```console
pip install -rrequirements.txt -rrequirements-testing.txt -rrequirements-tunnel.txt
make lib-dep
```

- Run tests
- Optionally, run tests

```console
❯ make
Expand Down

0 comments on commit 7a415dc

Please sign in to comment.