Skip to content
Snippets Groups Projects
Commit 1bfe6888 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Remove dependency on 'virtualenv'

'virtualenv' is an external dependency with the same purpose of Python's
'venv' module. This patch removes the external dependency in favor of
the readily available package.
parent 51ddaa64
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,5 @@ jobs: ...@@ -11,7 +11,5 @@ jobs:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v3.1.0
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Install virtualenv using pip
run: pip install virtualenv
- name: Run ansible-test - name: Run ansible-test
run: bash tests/sanity/sanity.sh run: bash tests/sanity/sanity.sh
...@@ -8,7 +8,7 @@ ANSIBLE_COLLECTION=freeipa-ansible_freeipa ...@@ -8,7 +8,7 @@ ANSIBLE_COLLECTION=freeipa-ansible_freeipa
use_docker=$(docker -v >/dev/null 2>&1 && echo "True" || echo "False") use_docker=$(docker -v >/dev/null 2>&1 && echo "True" || echo "False")
virtualenv "$VENV" python -m venv "$VENV"
# shellcheck disable=SC1091 # shellcheck disable=SC1091
source "$VENV"/bin/activate source "$VENV"/bin/activate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment