anthonydresser / testissues

0 stars 0 forks source link

notebook is not able to handle large output #4956

Open anthonydresser opened 3 years ago

anthonydresser commented 3 years ago

I tried this with RC build on Windows.

Steps to Reproduce:

you need to have azure cli installed.

  1. open a new notebook
  2. switch to Python3 kernel

scenario 1: add the following code cell and run it

!{'az login'}

expected: all the output are displayed

actual: output truncated

scenario 2: add 2 code cells 1st cell:

!{'az login'}

2nd cell:

!{'az account show'}

the output of the 2nd cell is not shown instead, it shows the truncated output of the first cell.