Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
Print output of pip3 freeze in make deps target
Browse files Browse the repository at this point in the history
The output of pip3 freeze would help us to get a pip3-readable log of
the entire set of all dependencies installed in Travis CI environment.
If we need to refer back to it in future, we can visit a build job
page on Travis CI and use this output.
  • Loading branch information
susam committed May 15, 2021
1 parent 0cd2fd8 commit 76fd7c3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ venv: FORCE
deps: FORCE
touch venv
. ./venv && pip3 install -r requirements.txt
pip3 freeze
. ./venv && pip3 install -r dev-requirements.txt
pip3 freeze

rmvenv: FORCE
rm -rf ~/.venv/cloudmarker
Expand Down

0 comments on commit 76fd7c3

Please sign in to comment.