20 lines
476 B
YAML
20 lines
476 B
YAML
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-source # Fetch source tarball and unpack it into the test environment
|
||
|
tags:
|
||
|
- always
|
||
|
|
||
|
- role: standard-test-basic
|
||
|
tags:
|
||
|
- atomic
|
||
|
- classic
|
||
|
required_packages:
|
||
|
- bash
|
||
|
- kronosnet-tests
|
||
|
- kernel-modules-extra
|
||
|
|
||
|
tests:
|
||
|
- check: # Run tests
|
||
|
dir: .
|
||
|
run: ./run-tests.sh
|