2021-06-15 20:37:11 +00:00
|
|
|
- hosts: localhost
|
2021-11-15 16:23:10 +00:00
|
|
|
pre_tasks:
|
|
|
|
- name: unmount tmp to use disk for tests
|
|
|
|
shell: umount /tmp
|
|
|
|
tags:
|
|
|
|
- classic
|
2021-06-15 20:37:11 +00:00
|
|
|
roles:
|
|
|
|
- role: standard-test-source
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tests:
|
|
|
|
- unit:
|
|
|
|
dir: source
|
|
|
|
run: GOFLAGS=-mod=vendor go test ./...
|
|
|
|
required_packages:
|
|
|
|
- golang
|
|
|
|
- krb5-devel # required by the koji integration, code cannot be compiled without this packages
|