Continue our effort to move to Github-actions. This imports the runtime tests from Travis into Github-actions. The `test_boot` test is still left on travis, since it requires stacked KVM, which is not yet available on github-actions.
11 lines
265 B
YAML
11 lines
265 B
YAML
dist: bionic
|
|
language: python
|
|
python:
|
|
- "3.7"
|
|
env:
|
|
- PYTHONUNBUFFERED=1
|
|
jobs:
|
|
include:
|
|
- name: f30-boot
|
|
before_install: sudo apt-get install -y systemd-container yum qemu-kvm
|
|
script: sudo env "PATH=$PATH" python3 -m unittest -v test.test_boot
|