mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
d648c6a692
We should run pylint in both python2 and python3 versions Reviewed-By: Christian Heimes <cheimes@redhat.com>
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
# Configuration file for the test runner used in Travis CI
|
|
|
|
container:
|
|
detach: true
|
|
hostname: master.ipa.test
|
|
working_dir: /freeipa
|
|
host:
|
|
binds:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
- /dev/urandom:/dev/random:ro
|
|
privileged: true
|
|
security_opt:
|
|
- label:disable
|
|
tmpfs:
|
|
- /tmp
|
|
- /run
|
|
server:
|
|
domain: ipa.test
|
|
password: Secret123
|
|
realm: IPA.TEST
|
|
steps:
|
|
build:
|
|
- make V=0 ${make_target}
|
|
builddep:
|
|
- rm -rf /var/cache/dnf/*
|
|
- "dnf makecache fast || :"
|
|
- dnf builddep -y ${builddep_opts} --spec freeipa.spec.in --best --allowerasing
|
|
cleanup:
|
|
- chown -R ${uid}:${gid} ${container_working_dir}
|
|
configure:
|
|
- ./autogen.sh
|
|
install_packages:
|
|
- dnf install -y ${container_working_dir}/dist/rpms/*.rpm --best --allowerasing
|
|
install_server:
|
|
- ipa-server-install -U --domain ${server_domain} --realm ${server_realm} -p ${server_password}
|
|
-a ${server_password} --setup-dns --auto-forwarders
|
|
- ipa-kra-install -p ${server_password}
|
|
lint:
|
|
- PYTHON=/usr/bin/python2 make V=0 lint
|
|
- PYTHON=/usr/bin/python3 make V=0 pylint
|
|
prepare_tests:
|
|
- echo ${server_password} | kinit admin && ipa ping
|
|
- cp -r /etc/ipa/* ~/.ipa/
|
|
- echo ${server_password} > ~/.ipa/.dmpw
|
|
- echo 'wait_for_dns=5' >> ~/.ipa/default.conf
|
|
run_tests:
|
|
- ipa-run-tests ${tests_ignore} -k-test_dns_soa ${tests_verbose} ${path}
|
|
tests:
|
|
ignore:
|
|
- test_integration
|
|
- test_webui
|
|
- test_ipapython/test_keyring.py
|
|
verbose: true
|