ci: Avoid installing virtualenv.

virtualenv was replace with python native venv in
6ac2165.
This commit is contained in:
Ganesh Pawar 2021-03-09 10:42:52 +05:30 committed by Tim Abbott
parent 61abb4f59c
commit 68f811d4d8

View file

@ -19,11 +19,7 @@ jobs:
python-version: 3.6 python-version: 3.6
- name: Install dependencies - name: Install dependencies
run: | run: tools/provision --force
sudo rm -vf /etc/apt/sources.list.d/*
sudo apt-get update
sudo apt-get install virtualenv
tools/provision --force
- name: Running Test-Suite - name: Running Test-Suite
run: | run: |
@ -46,11 +42,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: tools/provision --force
sudo rm -vf /etc/apt/sources.list.d/*
sudo apt-get update
sudo apt-get install virtualenv
tools/provision --force
- name: Running Test-Suite - name: Running Test-Suite
run: | run: |