Skip to content

Commit

Permalink
fix: webdriver missing dependency (#15222)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite authored Apr 25, 2023
1 parent ab67e91 commit d9dfff1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ jobs:
custom_cache_key_element: v1-

- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'

- name: Install SAML (python3-saml) dependencies
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Install python dependencies
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'
run: |
cd current
python -m pip install -r requirements-dev.txt
Expand Down Expand Up @@ -189,15 +189,15 @@ jobs:
custom_cache_key_element: v1-

- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'

- name: Install SAML (python3-saml) dependencies
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Install python dependencies
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'
run: |
python -m pip install -r requirements-dev.txt
python -m pip install -r requirements.txt
Expand Down Expand Up @@ -346,15 +346,15 @@ jobs:
id: cache-backend-tests

- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'

- name: Install SAML (python3-saml) dependencies
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Install python dependencies
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'
run: |
python -m pip install -r master/requirements-dev.txt
python -m pip install -r master/requirements.txt
Expand Down Expand Up @@ -444,10 +444,10 @@ jobs:
custom_cache_key_element: v1-${{ inputs.cache-id }}

- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'

- name: Install python dependencies
if: steps.cache-backend-tests.outputs.cache-hit == 'false'
if: steps.cache-backend-tests.outputs.cache-hit != 'true'
shell: bash
run: |
python -m pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ sqlparse==0.4.4
temporalio==1.1.0
token-bucket==0.3.0
toronado==0.1.0
webdriver_manager==3.8.4
webdriver_manager==3.8.5
whitenoise==5.2.0
mimesis==5.2.1
more-itertools==9.0.0
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ oauthlib==3.1.0
# social-auth-core
outcome==1.1.0
# via trio
packaging==23.1
# via webdriver-manager
parso==0.8.1
# via -r requirements.in
pexpect==4.7.0
Expand Down Expand Up @@ -382,7 +384,7 @@ vine==1.3.0
# via
# amqp
# celery
webdriver-manager==3.8.4
webdriver-manager==3.8.5
# via -r requirements.in
whitenoise==5.2.0
# via -r requirements.in
Expand Down

0 comments on commit d9dfff1

Please sign in to comment.