Archived
1
1
Fork 0

forgejo: make pip quieter-er
All checks were successful
Pylint / test (push) Successful in 1m2s

This commit is contained in:
Josh Lay 2023-08-29 23:48:37 -05:00
parent 36fea96bb6
commit e2f0ace30a
Signed by: jlay
GPG key ID: B265E45CACAD108A

View file

@ -19,9 +19,9 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install Python dependencies - name: Install Python dependencies
run: | run: |
python3 -m pip -q install --upgrade pip python3 -m pip -qq install --upgrade pip
python3 -m pip -q install --no-compile -r requirements.txt python3 -m pip -qq install --no-compile -r requirements.txt
python3 -m pip -q install pylint python3 -m pip -qq install pylint
- name: Show Python modules / versions - name: Show Python modules / versions
run: python3 -m pip list run: python3 -m pip list