Skip to content

Commit

Permalink
Add doc building to travis-ci, add python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Purg committed Feb 14, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent c9f6c2a commit d9b4339
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"

sudo: false

@@ -18,7 +19,7 @@ addons:
# "Install" of SMQTK + immediate deps
install:
# install python dependencies to environment
- pip install -r requirements.txt
- pip install -r requirements.txt -r requirements.docs.txt

# Build components of SMQTK
- mkdir _build
@@ -29,6 +30,10 @@ install:
# Environment var export
- source _build/setup_env.build.sh

# Run tests here
script:
# Attempt building documentation
- pushd docs
- make html
- popd
# Run unit tests
- bash ./run_tests.sh
6 changes: 6 additions & 0 deletions docs/release_notes/pending_release.rst
Original file line number Diff line number Diff line change
@@ -5,6 +5,12 @@ SMQTK Pending Release Notes
Updates / New Features
----------------------

CI

- Add python 3.7 to python versions tested.

- Add documentation building to Travis-CI.

Documentation

- Updated IQR Demo Application documentation RST file and images to

0 comments on commit d9b4339

Please sign in to comment.