Travis CI: use specific Python version during build

This is a preparatory work for the future requirement of running
Python2/3 jobs simultaneously.

Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
This commit is contained in:
Martin Babinsky 2016-12-21 10:16:47 +01:00
parent b6216756f6
commit f48d6fc168
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,8 @@ language: python
services:
- docker
python:
- "2.7"
cache: pip
env:
global:

View File

@ -1,8 +1,8 @@
#!/bin/bash
# NOTE: this script is intended to run in Travis CI only
set -ev
PYTHON="/usr/bin/python${TRAVIS_PYTHON_VERSION}"
test_set=""
developer_mode_opt="--developer-mode"
@ -29,6 +29,7 @@ docker pull $TEST_RUNNER_IMAGE
ipa-docker-test-runner -l $CI_RESULTS_LOG \
-c $TEST_RUNNER_CONFIG \
$developer_mode_opt \
--container-environment "PYTHON=$PYTHON" \
--container-image $TEST_RUNNER_IMAGE \
--git-repo $TRAVIS_BUILD_DIR \
$TASK_TO_RUN $test_set