mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-12 14:00:27 +08:00
Fixing small bug in iptest. Can now be run as "iptest".
This commit is contained in:
parent
97e13855e1
commit
ed8ff9e4e0
@ -287,10 +287,13 @@ def run_iptestall():
|
||||
|
||||
|
||||
def main():
|
||||
if sys.argv[1] == 'all':
|
||||
if len(sys.argv) == 1:
|
||||
run_iptestall()
|
||||
else:
|
||||
run_iptest()
|
||||
if sys.argv[1] == 'all':
|
||||
run_iptestall()
|
||||
else:
|
||||
run_iptest()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Loading…
x
Reference in New Issue
Block a user