Return a valid default argv for creating testing instances of ipython
()
| 116 | |
| 117 | |
| 118 | def default_argv() -> List[str]: |
| 119 | """Return a valid default argv for creating testing instances of ipython""" |
| 120 | |
| 121 | return [ |
| 122 | "--quick", # so no config file is loaded |
| 123 | # Other defaults to minimize side effects on stdout |
| 124 | "--colors=nocolor", |
| 125 | "--no-term-title", |
| 126 | "--no-banner", |
| 127 | "--autocall=0", |
| 128 | ] |
| 129 | |
| 130 | |
| 131 | def default_config() -> Config: |
no outgoing calls
no test coverage detected
searching dependent graphs…