Skip to content

Commit 344fad6

Browse files
authored
Merge pull request #93 from jayvdb/dogfood-fix
Dogfood fix
2 parents 255752d + e157e88 commit 344fad6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ stages:
2828

2929
.moban: &moban
3030
<<: *disable_global
31-
python: 2.7
31+
python: 3.6
3232
stage: moban
3333
install: pip install moban>=0.0.4
3434
script:
@@ -39,7 +39,7 @@ jobs:
3939
- *moban
4040
- *lint
4141
allow_failures:
42-
- test
42+
- stage: test
4343

4444
stage: test
4545

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ all: upstreaming
22

33
upstreaming:
44
moban -m mobanfile
5+
git diff
6+
git diff --ignore-blank-lines | while read line; do if [ "$line" ]; then exit 1; fi; done
57

68
lint: flake8 . --exclude=.moban.d,docs --builtins=unicode,xrange,long
79

templates/docs/make.bat.jj2

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ if errorlevel 9009 (
2525
exit /b 1
2626
)
2727

28-
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
2929
goto end
3030

3131
:help
32-
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
3333

3434
:end
3535
popd

0 commit comments

Comments
 (0)