Parcourir la source

Don't open browsers for performance testing

Saul Shanabrook il y a 5 ans
Parent
commit
d04d90757e
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      CONTRIBUTING.md

+ 3 - 3
CONTRIBUTING.md

@@ -231,7 +231,7 @@ jlpm run build:dev
 Then, start JupyterLab using the dev build:
 
 ```bash
-jupyter lab --dev --NotebookApp.token=''
+jupyter lab --dev --NotebookApp.token=''  --no-browser
 ```
 
 Now run Lighthouse against this local server and show the results:
@@ -284,7 +284,7 @@ First, we build JupyterLab normally, start it up, profile it and save the result
 
 ```bash
 jlpm build:dev
-jupyter lab --dev --NotebookApp.token=''
+jupyter lab --dev --NotebookApp.token='' --no-browser
 
 # in new window
 jlpm run lighthouse --output json --output-path normal.json
@@ -294,7 +294,7 @@ Then rebuild with the production build and retest:
 
 ```bash
 jlpm run build:dev:prod
-jupyter lab --dev --NotebookApp.token=''
+jupyter lab --dev --NotebookApp.token='' --no-browser
 
 # in new window
 jlpm run lighthouse --output json --output-path prod.json