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 d7e7694 commit d523816
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,12 @@ jobs:
- name: Install python dependencies
run: |
if [[ "${{ matrix.os }}" == bionic* ]]; then
echo "this is bionic !!!";
python3.8 -m venv ./venv;
if [[ ${{ matrix.os }} == 'bionic-3.8' ]]; then
python3.8 -m venv ./venv
else
echo "this is not bionic !!!";
python3 -m venv ./venv;
python3 -m venv ./venv
fi
./venv/bin/pip3 install --upgrade pip wheel setuptools pip-tools -c requirements.txt -c dev-requirements.txt
./venv/bin/pip-sync requirements.txt dev-requirements.txt
Expand Down

0 comments on commit d523816

Please sign in to comment.