mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 08:41:55 -06:00
b8423492f5
In order to speed our Travis CI gating even further, the lint step has been split to a separate job that can be run in parallel with the test runs. The test runs are in turn launched in developer mode to speed them up. Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
34 lines
978 B
YAML
34 lines
978 B
YAML
language: python
|
|
services:
|
|
- docker
|
|
|
|
env:
|
|
global:
|
|
- TEST_RUNNER_IMAGE="martbab/freeipa-fedora-test-runner:master-latest"
|
|
TEST_RUNNER_CONFIG=".test_runner_config.yaml"
|
|
PEP8_ERROR_LOG="pep8_errors.log"
|
|
CI_RESULTS_LOG="ci_results_${TRAVIS_BRANCH}.log"
|
|
matrix:
|
|
- TASK_TO_RUN="lint"
|
|
- TASK_TO_RUN="run-tests"
|
|
TESTS_TO_RUN="test_xmlrpc/test_[a-k]*.py"
|
|
- TASK_TO_RUN="run-tests"
|
|
TESTS_TO_RUN="test_cmdline
|
|
test_install
|
|
test_ipalib
|
|
test_ipapython
|
|
test_ipaserver
|
|
test_pkcs10
|
|
test_xmlrpc/test_[l-z]*.py"
|
|
before_install:
|
|
- pip install pep8
|
|
- >
|
|
pip3 install
|
|
git+https://github.com/freeipa/ipa-docker-test-runner@release-0-2-1
|
|
|
|
script:
|
|
- travis_wait 50 ./.travis_run_task.sh
|
|
after_failure:
|
|
- echo "Test runner output:"; tail -n 5000 $CI_RESULTS_LOG
|
|
- echo "PEP-8 errors:"; cat $PEP8_ERROR_LOG
|