Skip to content

Commit

Permalink
ci(travis): Fixes build error
Browse files Browse the repository at this point in the history
  • Loading branch information
asciidisco committed Oct 24, 2017
1 parent dad1f7f commit b2d5478
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ script:
- pip install pycryptodomex
- make all
- touch ./_build/.nojekyll
- if [ "$TRAVIS_BRANCH" == "master" ]; then codeclimate-test-reporter; else exit 0; fi
- if [ "$TRAVIS_BRANCH" == "master" ]; then make rere; else exit 0; fi

deploy:
- provider: pages
Expand Down
4 changes: 3 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all test clean docs clean-pyc clean-report clean-docs clean-coverage
.PHONY: all test clean docs clean-pyc clean-report clean-docs clean-coverage rere
.DEFAULT_GOAL := all

SPHINXBUILD = sphinx-build
Expand Down Expand Up @@ -52,6 +52,8 @@ docs:
test:
nosetests $(TEST_DIR) $(TEST_OPTIONS) --cover-html --cover-html-dir=$(COVERAGE_DIR)

rere:
codeclimate-test-reporter

help:
@echo " clean-pyc"
Expand Down

0 comments on commit b2d5478

Please sign in to comment.