forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't use pip cache in github workflows
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
|
||
- name: Set Up Python-${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -32,16 +32,16 @@ jobs: | |
# link vs compile time ssl implementations can break the environment when installing requirements | ||
# Uninstall pycurl - its likely not installed, but in case the ubuntu-latest packages change | ||
# Then compile and install it with PYCURL_SSL_LIBRARY set to openssl | ||
pip install -U pip | ||
pip install -U pip wheel | ||
pip uninstall -y pycurl | ||
pip install --compile --no-cache-dir pycurl | ||
pip install -U -r requirements.txt -r requirements-optional.txt | ||
pip install -U --no-cache-dir -r requirements.txt -r requirements-optional.txt | ||
for conffile in conf/*.yaml.template; do mv -- "$conffile" "${conffile%.yaml.template}.yaml"; done | ||
cp broker_settings.yaml.example broker_settings.yaml | ||
cp .env.example .env | ||
- name: Pre Commit Checks | ||
uses: pre-commit/[email protected].0 | ||
uses: pre-commit/[email protected].3 | ||
|
||
- name: Collect Tests | ||
run: | | ||
|