We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc84b4 commit adbed59Copy full SHA for adbed59
2 files changed
.travis.yml
@@ -30,10 +30,12 @@ before_install:
30
install:
31
- pip install -r rootfs/requirements.txt
32
- pip install -r rootfs/dev_requirements.txt
33
+ - make -C docs/ deps
34
- GLIDE_HOME=/home/travis/.glide make -C client bootstrap
35
script:
36
- make test
37
- make -C client/ test
38
+ - make -C docs/ test
39
deploy:
40
provider: script
41
script: _scripts/deploy.sh
docs/Makefile
@@ -16,7 +16,7 @@ clean:
16
rm -rf $(BUILDDIR)/*
17
18
deps:
19
- pip install --disable-pip-version-check -r requirements.txt
+ pip install -r requirements.txt
20
21
test: build
22
grep -q '<h1 id="welcome">Welcome</h1>' _build/html/index.html
0 commit comments