Skip to content

Add lib-dep makefile target #701

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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