Skip to content
Open
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
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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
Expand All @@ -29,6 +29,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
Expand Up @@ -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
Expand Down