Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ jobs:
- name: Install make
run: sudo apt install make

- name: Install python 3.11
- name: Install python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12

- name: Install requirements
run: pip3.11 install -r requirements/requirements_dev.txt ansible-core
run: pip3.12 install -r requirements/requirements_dev.txt ansible-core==2.18
working-directory: ansible-platform

- name: Perform completeness tests
Expand Down Expand Up @@ -125,10 +125,10 @@ jobs:
- name: Install make
run: sudo apt install make

- name: Install python 3.11
- name: Install python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12

- name: Extract gateway password and set it as an environment variable
run: |
Expand All @@ -142,7 +142,7 @@ jobs:
working-directory: aap-gateway

- name: Install requirements
run: pip3.11 install -r requirements/requirements_dev.txt ansible-core
run: pip3.12 install -r requirements/requirements_dev.txt ansible-core==2.18
working-directory: ansible-platform

- name: Perform completeness tests
Expand Down
Loading