Skip to content
Snippets Groups Projects
Commit 122a2654 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

don't use make in travis for sphinx doctest

parent defb41c3
No related merge requests found
......@@ -18,7 +18,6 @@ before_install:
# Useful for debugging any issues with conda
- conda info -a
- free -m
- make -v
addons:
apt:
packages:
......
......@@ -66,6 +66,8 @@ logging.getLogger('tensorflow').disabled = True
import numpy
import pandas
import mhcflurry
pandas.set_option('max_columns', 20)
pandas.set_option('display.expand_frame_repr', False)
'''
doctest_test_doctest_blocks = ''
......
#!/bin/bash
make doctest
sphinx-build -b doctest -d _build/doctrees . _build/doctest
RETVAL=$?
echo doctest returned $RETVAL
cat _build/doctest/output.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment