Thomas Kluyver
b93820bf4c
Merge pull request #2419 from minrk/notebook-stop
...
minor cleanup in 'jupyter notebook stop'
9 years ago
Min RK
9e84fe332c
test notebook stop
9 years ago
Min RK
31219f0447
stop using Allow76
...
since we are using phantomjs 2, we don't need the old websocket implementation anymore
which is broken with tornado 4.5, anyway
9 years ago
Min RK
96044f6c80
test updating execute_result
9 years ago
Min RK
f510806ff2
fix wait condition in display_id test
...
it was always waiting the maximum time because the condition was never met
9 years ago
Kyle Kelley
ead73b9efa
Merge pull request #2220 from delftswa2017/fix-issue-980
...
Fixed issue #980 : incorrect LaTeX capturing and MathJax rendering
9 years ago
michaelpacer
b7b6ec2ad2
Added more test cases, added spacing so that it was technically valid
9 years ago
michaelpacer
9a817f7bf0
Add test for LaTeX parsing
9 years ago
Min RK
0ebcb7a65f
test tags cell toolbar
9 years ago
Matthias Bussonnier
9dd3818a00
Merge pull request #2134 from Carreau/rtl-prompt
...
Better handeling or RTL prompts
9 years ago
Matthias Bussonnier
f06aca718a
Wrap prompts in bdi for rtl layout
9 years ago
Min RK
f63880700d
copying cells copies attachments
...
add test to verify
9 years ago
Matthias Bussonnier
4a16c37caa
Merge pull request #2111 from minrk/patch-env
...
disable all config in tests
9 years ago
Min RK
236198571b
test dirs are paths, not TempDir objects
9 years ago
Min RK
f0d5ccb208
disable all config in tests
...
avoids in-env config from polluting test environment
9 years ago
Min RK
1797f34210
test merging serverextensions from sys and user config
...
and refactor mock test environment a bit
ensures no system config files loaded or affected
9 years ago
kikocorreoso
4c9f130953
fix issue with OS in tests
9 years ago
kikocorreoso
97263161e4
fix and tests for the issue related with the trailing slash using 'nbextension install' (see #2069 )
9 years ago
Grant Nestor
3cbb5700cc
Add `test_view_html`
9 years ago
Min RK
eb73920cbf
Merge pull request #2070 from ivanov/halt-kernel
...
Add "Shutdown" item to Kernel menu
9 years ago
Paul Ivanov
051e430f98
fix tests
...
along with a minor whitespace inconsistency introduced in an earlier
commit.
9 years ago
Paul Ivanov
03e410ba61
rename Halt to Shutdown
9 years ago
Paul Ivanov
95790be956
kernel halt confirmation dialog
9 years ago
Thomas Kluyver
f5072cf434
Merge pull request #1827 from minrk/kernel-activity
...
add activity watching to kernels
9 years ago
Paul Ivanov
eb3377cc45
speed up casperjs tests
...
This code claimed to be required for SlimerJS, but our test suite does
not currently pass on SlimerJS (and does no better or worse without this
code).
With PhantomJS, however, this eliminates a ~10s startup cost for each
file which uses notebook_test, and all of the tests continue to pass.
There are ~40 files using this, the bult of them in the js/notebook
section, which should now run 5-6 minutes faster as a result.
9 years ago
Min RK
2a5f8d2e17
add token auth to kernel websocket test
9 years ago
Thomas Kluyver
666ecbf35c
Merge pull request #2011 from minrk/unwebpack
...
unwebpackify
9 years ago
Kyle Kelley
f5f97d1f93
Merge pull request #2007 from minrk/password
...
add `jupyter notebook password` entrypoint
9 years ago
Min RK
035fc91fa9
test runtime-loading of modules
...
verify that runtime-required modules are the same as those used to build the classes
(this is the primary motivator for the rollback of webpack)
9 years ago
Min RK
16a751c4d6
fix attachments test
...
Don't try to pass non-JSONable data across evaluate boundary
9 years ago
Min RK
003ce4e71a
reimpelement casper.thenClick
...
using jquery.
default implementation doesn't seem to trigger events.
9 years ago
Min RK
7839d32cfe
remove test for reverted deprecated paths
9 years ago
Min RK
a69494833b
forward-port fixes
9 years ago
Min RK
f871d64e6e
exercise password app
9 years ago
Min RK
8e141df890
run Python tests with a token
...
exercises token auth
9 years ago
Min RK
3c0da28764
add missing waits for output in display_id tests
9 years ago
Min RK
a2f7325537
fix carriage return handling
...
The only real fix is an errant `+` on the final replacement, which would end up skipping sequential replacements.
- leaves trailing `\r` on the text, if there is one
- use groups to avoid unnecessary replace calls (no change)
- includes test
9 years ago
Jason Grout
1864fe5adb
Some tests for output callback overrides.
9 years ago
Thomas Kluyver
e6fb7e65e9
Merge pull request #1650 from Carreau/predicatable-extensions
...
Load extension in predictable order.
9 years ago
Kyle Kelley
6df840e19d
Merge pull request #1879 from minrk/display_data_update
...
support routing updating outputs with display_id
9 years ago
Kyle Kelley
389b0b0730
Merge pull request #1831 from minrk/server-token
...
enable token-authentication by default
9 years ago
Min RK
4439a19d24
test display_id handling
9 years ago
Thomas Kluyver
1de0423448
Improve performance of directory listing
...
- stat() the file once and reuse the result to save on syscalls. Not as
good as using scandir(), but should still help.
- Don't re-check if parent directories are hidden for each file in the
directory.
Could do with testing on Windows.
9 years ago
Min RK
bf249669e1
call it token
...
login_token is redundant
9 years ago
Min RK
3ba68d8cb7
enable token-authentication by default
...
- add NotebookApp.login_token, used when NotebookApp.password is not set
- store login_token, bool(password) in notebook server-info file
- `jupyter notebook list` shows pasteable URLs with token
General changes:
- notebook servers are now authenticated by default
- first connect with token sets a cookie
- once a user has logged into one server with a token, their browser is logged in to
all subsequent servers on the same system+port until cookie_secret changes
9 years ago
Min RK
92d3f4235d
Merge pull request #1359 from blink1073/generic-session
...
Update the session api in preparation for file and console sessions
9 years ago
Matthias Bussonnier
26471897ef
Define SimpleNamespace on python 2
9 years ago
Matthias Bussonnier
5210701803
Add test for predictable extension loading.
9 years ago
Min RK
0b7435b474
add one missing skip_win32 in nbextension symlink tests
...
all the other symlink tests are already skipped
9 years ago
Min RK
03af493062
put NotebookNotary signature db in memory for tests
...
avoids cleanup issues on Windows
10 years ago