Merge pull request #1114 from rjeffman/remove_virtualenv

Remove dependency on 'virtualenv'
This commit is contained in:
Thomas Woerner
2023-07-14 15:05:09 +02:00
committed by GitHub
2 changed files with 1 additions and 3 deletions

View File

@@ -11,7 +11,5 @@ jobs:
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 0
- name: Install virtualenv using pip
run: pip install virtualenv
- name: Run ansible-test
run: bash tests/sanity/sanity.sh

View File

@@ -8,7 +8,7 @@ ANSIBLE_COLLECTION=freeipa-ansible_freeipa
use_docker=$(docker -v >/dev/null 2>&1 && echo "True" || echo "False")
virtualenv "$VENV"
python -m venv "$VENV"
# shellcheck disable=SC1091
source "$VENV"/bin/activate