このNotebookは、このイメージにインストールされたライブラリ/ツールが予期した通りにインストールされていることをチェックするものです。Travis CI上でpapermillにより実行されます。

This notebooks tests whether the installed apps work expectedly, and can be executed by papermill on Travis CI.


In [1]:
import sys
assert sys.version_info[0] == 3

Libraries

numpy and matplotlib to draw charts


In [2]:
%matplotlib inline

In [3]:
import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0.0, 10.0, 0.1)
plt.plot(x, np.sin(x))


Out[3]:
[<matplotlib.lines.Line2D at 0x7f8510084748>]

pandas to display tables


In [4]:
import pandas as pd

pd.DataFrame([(0, 1), (2, 3)], columns=['A', 'B'])


Out[4]:
A B
0 0 1
1 2 3

Utilities


In [5]:
!which ansible


/opt/conda/bin/ansible

In [6]:
!which wget


/usr/bin/wget

In [7]:
!which curl


/usr/bin/curl

In [8]:
!which papermill


/opt/conda/bin/papermill

In [9]:
!which ping


/bin/ping

In [ ]: