We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 026695b commit f8cf6abCopy full SHA for f8cf6ab
.travis.yml
@@ -2,6 +2,16 @@ addons:
2
apt:
3
packages:
4
- sshpass
5
+ - enchant
6
+ - enchant-dev
7
+
8
+env:
9
+ - TESTS="spellcheck"
10
+ - TESTS="build"
11
12
+matrix:
13
+ allow_failures:
14
+ - env: TESTS="spellcheck"
15
16
language: python
17
cache: pip
@@ -11,7 +21,10 @@ python:
21
install: "pip install -r requirements.txt"
22
23
script:
- - nikola build
24
+- case $TESTS in
25
+ spellcheck) nikola plugin -i spell_check ;;
26
+ build) nikola build ;;
27
+ esac
28
29
deploy:
30
skip_cleanup: true
0 commit comments