Skip to content

fixup: no 3.6 on ubuntu #893

fixup: no 3.6 on ubuntu

fixup: no 3.6 on ubuntu #893

Workflow file for this run

name: Tests
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
# Share the store between the workers speeds things up further
OSBUILD_TEST_STORE: /var/tmp/osbuild-test-store
jobs:
# Thissmoke test runs the unit tests directly on the runner and as a
# normal user - it is fast (1min) and should detect obvious issues
# (like from pr#1942)
unittests_as_user_smoke:
name: "Smoke run: unittest as normal user on default runner"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: 'pip'
- name: "Run as user on default runer"
run: |
pip install -r requirements.txt
# depsolve tests tend to be slow but are easy to parallize
pytest -n 16