annotate .travis.yml @ 454:96d363e2da4b

templating: Let Jinja2 cache the parsed template for page contents.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 06 Jul 2015 21:32:40 -0700
parents 779c67decff6
children aefd2714d205
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
178
ff5b2d3863a8 build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
1 language: python
ff5b2d3863a8 build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
2 python:
ff5b2d3863a8 build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
3 - "3.4"
354
779c67decff6 build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents: 178
diff changeset
4 install:
779c67decff6 build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents: 178
diff changeset
5 - "pip install -r requirements.txt"
779c67decff6 build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents: 178
diff changeset
6 - "pip install -r dev-requirements.txt"
178
ff5b2d3863a8 build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
7 script: py.test
ff5b2d3863a8 build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
8