-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from jacebrowning/release/v1.0.2
Release v1.0.2
- Loading branch information
Showing
33 changed files
with
261 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
branch = true | ||
omit = | ||
*/env/* | ||
*/test/* | ||
*/tests/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[pep8] | ||
|
||
ignore = E501,E712 | ||
# E501: line too long (checked by PyLint) | ||
# E711: comparison to None (used to improve test style) | ||
# E712: comparison to True (used to improve test style) | ||
ignore = E501,E711,E712 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,40 +12,22 @@ cache: | |
env: | ||
global: | ||
- RANDOM_SEED=12345 | ||
- secure: "UnyHAJ/T6eI/6vaXXKsZgs2XqBib06DubRqMVegy1nMNBjFsmyZ3tU+22gW2NWAGzukwC3GXWsxkN+7sTlTcTldFBvN9onzC1oVDfQrcAUjvSOK02OZ4tepVq5umsDUxGpRqhWB7LgEv0zM6DHzj6k+yaPBtcJg6NFhpScQfHyY=" | ||
|
||
install: | ||
- pip install coveralls scrutinizer-ocular | ||
|
||
before_script: | ||
- make env | ||
- make depends-ci | ||
- make depends | ||
|
||
script: | ||
- make ci | ||
- make check | ||
- make test | ||
|
||
after_success: | ||
- coveralls | ||
- ocular | ||
|
||
after_script: > | ||
echo $TRAVIS_BRANCH; echo $TRAVIS_PULL_REQUEST; | ||
if [[ $TRAVIS_BRANCH == 'develop' && $TRAVIS_PULL_REQUEST == 'false' ]]; then | ||
# Generate site | ||
make mkdocs ; | ||
# Configure Git with Travis CI information | ||
git config --global user.email "[email protected]" ; | ||
git config --global user.name "travis-ci" ; | ||
# Delete the current repository | ||
rm -rf .git ; | ||
# Rebuild the repository from the generated files and push to GitHub pages | ||
cd site ; | ||
git init ; | ||
git add . ; | ||
git commit -m "Deploy Travis CI build $TRAVIS_BUILD_NUMBER to GitHub pages" ; | ||
git push -f https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} master:gh-pages ; | ||
fi | ||
notifications: | ||
email: | ||
on_success: never | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.