Skip to content

requirements(deps): bump typing-extensions from 4.10.0 to 4.11.0 #1142

requirements(deps): bump typing-extensions from 4.10.0 to 4.11.0

requirements(deps): bump typing-extensions from 4.10.0 to 4.11.0 #1142

Workflow file for this run

name: Run the test suite
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
jobs:
install_and_run:
name: Run the test suite
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python 3.8
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: 3.8
- name: Install test dependencies
run: |-
python3 -m venv venv/
source venv/bin/activate
pip3 install \
--disable-pip-version-check \
--no-warn-script-location \
-r requirements.txt
pip3 check
# Ensure that even indirect dependencies are fully pinned
diff -u0 \
<(sed -e '/^#/d' -e '/^$/d' requirements.txt | sort -f) \
<(pip3 freeze | sort -f)
- name: Smoke test creation of Ubuntu OpenStack images
run: |-
source venv/bin/activate
pytest -v --doctest-modules