Mercurial > piecrust2
annotate .travis.yml @ 492:d90ccdf18156
tests: Fix processing tests on Windows.
See the comment in `pipeline.py` for more info but basically I was passing
already initialized processors to the worker pool, which means pickling the
whole app. Pretty bad. Interesting that it only broke on Windows, though.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 23 Jul 2015 22:07:32 -0700 |
parents | aefd2714d205 |
children | 3c4075e37dc2 |
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" |
354
779c67decff6
build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
178
diff
changeset
|
5 install: |
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 requirements.txt" |
779c67decff6
build: Put dev-only lib requirements into a `dev-requirements.txt` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
178
diff
changeset
|
7 - "pip install -r dev-requirements.txt" |
178
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
8 script: py.test |
ff5b2d3863a8
build: Add Travis-CI config file.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
9 |