Skip to content
Snippets Groups Projects
Commit d560e3cf authored by AhmetNSimsek's avatar AhmetNSimsek
Browse files

test suite using ubuntu 22.04 and drop python 3.7

parent aa07da0c
No related branches found
No related tags found
No related merge requests found
Pipeline #63473 failed
......@@ -3,9 +3,10 @@ name: '[test] unit test'
on: [push]
jobs:
unit-tests:
runs-on: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
runs-on: ubuntu-22.04 # use ubuntu-latest when python 3.7 is dropped
env:
# unit tests should not need tokens
SIIBRA_LOG_LEVEL: DEBUG
strategy:
fail-fast: false
......@@ -50,8 +51,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-20.04', 'windows-latest' ] # use ubuntu-latest when python 3.7 is dropped
python-version: [ '3.10', '3.9', '3.8', '3.7' ]
os: [ 'ubuntu-22.04', 'windows-latest' ]
python-version: [ '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
......@@ -89,14 +90,14 @@ jobs:
pytest -rx e2e
check-importable:
runs-on: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
runs-on: ubuntu-22.04
env:
KEYCLOAK_CLIENT_ID: ${{ secrets.KEYCLOAK_CLIENT_ID }}
KEYCLOAK_CLIENT_SECRET: ${{ secrets.KEYCLOAK_CLIENT_SECRET }}
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.9', '3.8', '3.7' ]
python-version: [ '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
- name: Set up Python
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment