
Explicity Including Builds #
It is also possible to include entries into the matrix with matrix.include:
language: python
matrix:
include:
- python: "2.7"
env: TEST_SUITE=suite_2_7
- python: "3.3"
env: TEST_SUITE=suite_3_3
- python: "pypy"
env: TEST_SUITE=suite_pypy
script: ./test.py $TEST_SUITE