Skip to content

Commit 16a7f9c

Browse files
committed
Remove todo
1 parent 0d0c6e6 commit 16a7f9c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

notebooks/beginner/html/testing1.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11872,12 +11872,12 @@ <h3 id="Running-pytest-inside-notebooks">Running pytest inside notebooks<a class
1187211872

1187311873
<div class="output_subarea output_stream output_stdout output_text">
1187411874
<pre>Requirement already satisfied: pytest in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (3.5.0)
11875-
Requirement already satisfied: pluggy&lt;0.7,&gt;=0.5 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (0.6.0)
11876-
Requirement already satisfied: py&gt;=1.5.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (1.5.3)
1187711875
Requirement already satisfied: attrs&gt;=17.4.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (17.4.0)
11878-
Requirement already satisfied: six&gt;=1.10.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (1.11.0)
11879-
Requirement already satisfied: more-itertools&gt;=4.0.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (4.1.0)
1188011876
Requirement already satisfied: setuptools in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (39.0.1)
11877+
Requirement already satisfied: py&gt;=1.5.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (1.5.3)
11878+
Requirement already satisfied: pluggy&lt;0.7,&gt;=0.5 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (0.6.0)
11879+
Requirement already satisfied: more-itertools&gt;=4.0.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (4.1.0)
11880+
Requirement already satisfied: six&gt;=1.10.0 in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (from pytest) (1.11.0)
1188111881
Requirement already satisfied: ipython_pytest in /Users/jerry/.virtualenvs/learn-python3/lib/python3.5/site-packages (0.0.1)
1188211882
</pre>
1188311883
</div>
@@ -11907,7 +11907,7 @@ <h3 id="Running-pytest-inside-notebooks">Running pytest inside notebooks<a class
1190711907
<div class="inner_cell">
1190811908
<div class="text_cell_render border-box-sizing rendered_html">
1190911909
<p>Due to technical limitations of Jupyter notebooks and pytest extension, all code that runs inside tests has to be in the same cell. In other words, you can not call e.g. functions that are defined in other cells.</p>
11910-
<p>In real applications you have separate directory and files for your tests (see TODO LINK ). The above mentioned limititation is only present for writing tests in Jupyter environment.</p>
11910+
<p>In real applications you have separate directory and .py files for your tests. The above mentioned limititation is only present for writing tests in Jupyter environment.</p>
1191111911

1191211912
</div>
1191311913
</div>
@@ -11970,7 +11970,7 @@ <h2 id="pytest-test-cases"><code>pytest</code> test cases<a class="anchor-link"
1197011970
<div class="output_subarea output_stream output_stdout output_text">
1197111971
<pre>============================================================ test session starts ============================================================
1197211972
platform darwin -- Python 3.5.4, pytest-3.5.0, py-1.5.3, pluggy-0.6.0
11973-
rootdir: /private/var/folders/nk/wgt71p5s1_d1wssm881h7ykc0000gn/T/tmpy9z1rypm, inifile:
11973+
rootdir: /private/var/folders/nk/wgt71p5s1_d1wssm881h7ykc0000gn/T/tmpn9irzd9l, inifile:
1197411974
plugins: nbval-0.9.0
1197511975
collected 1 item
1197611976

notebooks/beginner/testing1.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"source": [
7575
"Due to technical limitations of Jupyter notebooks and pytest extension, all code that runs inside tests has to be in the same cell. In other words, you can not call e.g. functions that are defined in other cells. \n",
7676
"\n",
77-
"In real applications you have separate directory and files for your tests (see TODO LINK ). The above mentioned limititation is only present for writing tests in Jupyter environment."
77+
"In real applications you have separate directory and .py files for your tests. The above mentioned limititation is only present for writing tests in Jupyter environment."
7878
]
7979
},
8080
{

0 commit comments

Comments
 (0)