annotate .travis.yml @ 371:c2ca72fb7f0b 2.0.0a8

caching: Use separate caches for config variants and other contexts. * The `_cache` directory is now organized in multiple "sub-caches" for different contexts. * A new context is created when config variants or overrides are applied. * `serve` context uses a different context that the other commends, to prevent the `bake` command's output from messing up the preview server (e.g. with how asset URLs are generated differently between the two). * Fix a few places where the cache directory was referenced directly.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 03 May 2015 23:59:46 -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