Mercurial > piecrust2
annotate .travis.yml @ 792:58ebf50235a5
routing: Simplify how routes are defined.
* No more declaring the type of route parameters -- the sources and generators
already know what type each parameter is supposed to be.
* Same for variadic parameters -- we know already.
* Update cache version to force a clear reload of the config.
* Update tests.
TODO: simplify code in the `Route` class to use source or generator transparently.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 07 Sep 2016 08:58:41 -0700 |
parents | 15b6ffadc95f |
children | 84492d185813 |
rev | line source |
---|---|
463
aefd2714d205
cm: Use Travis CI's new infrastructure.
Ludovic Chabant <ludovic@chabant.com>
parents:
354
diff
changeset
|
1 sudo: false |
178
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 language: python |
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 python: |
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 - "3.4" |
671
3c4075e37dc2
cm: Also test Python 3.5 with Travis.
Ludovic Chabant <ludovic@chabant.com>
parents:
463
diff
changeset
|
5 - "3.5" |
354
779c67decff6
build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
178
diff
changeset
|
6 install: |
677
a9b13c848b20
cm: Make Travis-CI test packaging.
Ludovic Chabant <ludovic@chabant.com>
parents:
671
diff
changeset
|
7 - "python setup.py version -f 2.0" |
679
15b6ffadc95f
cm: It's fun to send typos to Travis-CI.
Ludovic Chabant <ludovic@chabant.com>
parents:
677
diff
changeset
|
8 - "python setup.py sdist --formats=zip" |
677
a9b13c848b20
cm: Make Travis-CI test packaging.
Ludovic Chabant <ludovic@chabant.com>
parents:
671
diff
changeset
|
9 - "pip install dist/PieCrust-2.0.zip" |
a9b13c848b20
cm: Make Travis-CI test packaging.
Ludovic Chabant <ludovic@chabant.com>
parents:
671
diff
changeset
|
10 script: |
a9b13c848b20
cm: Make Travis-CI test packaging.
Ludovic Chabant <ludovic@chabant.com>
parents:
671
diff
changeset
|
11 - "py.test" |
178
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
12 |