Skip to content
This repository was archived by the owner on May 6, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ before_install:
install:
- pip install -r rootfs/requirements.txt
- pip install -r rootfs/dev_requirements.txt
- make -C docs/ deps
- GLIDE_HOME=/home/travis/.glide make -C client bootstrap
script:
- make test
- make -C client/ test
- make -C docs/ test
deploy:
provider: script
script: _scripts/deploy.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ clean:
rm -rf $(BUILDDIR)/*

deps:
pip install --disable-pip-version-check -r requirements.txt
pip install -r requirements.txt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this removed? Without that flag you get the annoying upgrade message all the time.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just sticking to being consistent with lines 31 and 32 in .travis.yml. I can revert this if you'd prefer :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh I see. Now I'm torn between improving consistency and reducing pointless log messages...

Meh, this is trivial either way, LGTM.


test: build
grep -q '<h1 id="welcome">Welcome</h1>' _build/html/index.html
Expand Down