Mercurial > piecrust2
annotate .travis.yml @ 979:45ad976712ec
tests: Big push to get the tests to pass again.
- Lots of fixes everywhere in the code.
- Try to handle debug logging in the multiprocessing worker pool when running in pytest. Not perfect, but usable for now.
- Replace all `.md` test files with `.html` since now a auto-format extension always sets the format.
- Replace `out` with `outfiles` in most places since now blog archives are added to the bake output and I don't want to add expected outputs for blog archives everywhere.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 29 Oct 2017 22:51:57 -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 |