We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef30d24 commit bb2a9baCopy full SHA for bb2a9ba
.learn
@@ -1,7 +1,7 @@
1
jupyter_notebook: true
2
3
tags:
4
- - jupyter_notebook
+ - jupyter
5
- python
6
7
languages:
requirements.txt
@@ -0,0 +1,2 @@
+pandas
+Unittest2
test/index_test.py
@@ -0,0 +1,6 @@
+import unittest2 as unittest
+from ipynb.fs.full.index import *
+
+class TestPythonDatatypes(unittest.TestCase):
+ def test_passes(self):
+ self.assertEqual(True, True)
0 commit comments