mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
* [WIP] Implement automatic spell-check for docs fixes #663 The only thing unclear to me so far is how the output of `make spelling` should be checked - is there a possibility to check for a file (i.e. `_build/spelling/output.txt`) to be empty, and report a failed build otherwise? * fix typo in requirements.txt * add enchant library * travis should report errors, order spelling wordlist * change travis.yml to easier troubleshoot build issues * fixed more typos, added more words * add more words, fix more typos * added more words * added more words * revert changes to .travis.yml
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
language: python
|
|
sudo: false
|
|
install:
|
|
- pip install -U pip wheel setuptools==28.6.1
|
|
script:
|
|
- bash .travis.sh $JOB
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
services:
|
|
- mysql
|
|
- postgresql
|
|
matrix:
|
|
include:
|
|
- python: 3.6
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_sqlite.cfg
|
|
- python: 3.6
|
|
env: JOB=tests-cov
|
|
- python: 3.6
|
|
env: JOB=style
|
|
- python: 3.4
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_sqlite.cfg
|
|
- python: 3.5
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_sqlite.cfg
|
|
- python: 3.4
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_mysql.cfg
|
|
- python: 3.5
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_mysql.cfg
|
|
- python: 3.6
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_mysql.cfg
|
|
- python: 3.4
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_postgres.cfg
|
|
- python: 3.5
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_postgres.cfg
|
|
- python: 3.6
|
|
env: JOB=tests PRETIX_CONFIG_FILE=tests/travis_postgres.cfg
|
|
- python: 3.6
|
|
env: JOB=plugins
|
|
- python: 3.6
|
|
env: JOB=spelling
|
|
addons:
|
|
postgresql: "9.4"
|
|
apt:
|
|
packages:
|
|
- enchant
|