Skip to content

Commit

Permalink
revert bionic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
submarcos committed Oct 8, 2024
1 parent 5ba9d0d commit badcc9b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

strategy:
matrix:
os: ['focal-3.8', 'jammy-3.10']
os: ['bionic-3.8', 'focal-3.8', 'jammy-3.10']
tests-env: ['tests', 'tests_nds']

env:
Expand Down Expand Up @@ -114,7 +114,11 @@ jobs:
- name: Install python dependencies
run: |
python3 -m venv ./venv
if [[ ${{ matrix.os }} == 'bionic-3.8' ]]; then
python3.8 -m venv ./venv;
else
python3 -m venv ./venv;
fi
./venv/bin/pip3 install --upgrade pip wheel setuptools -c requirements.txt -c dev-requirements.txt
./venv/bin/pip3 install -r requirements.txt -U
./venv/bin/pip3 install -r dev-requirements.txt -U
Expand Down

0 comments on commit badcc9b

Please sign in to comment.