@@ -84,19 +84,19 @@ sudo python server_setup.py develop
84
84
![ ] ( http://cdn2.hubspot.net/hubfs/100006/images/gcp_bitnami.png " Linux SSH Terminal ")
85
85
86
86
``` bash
87
- py.test examples/my_first_test.py --with-selenium --headless --browser=chrome
87
+ pytest examples/my_first_test.py --headless --browser=chrome
88
88
```
89
89
90
90
#### Step 14. If you like nosetests better than pytest, that works too
91
91
92
92
``` bash
93
- nosetests examples/my_first_test.py --with-selenium -- headless --browser=chrome
93
+ nosetests examples/my_first_test.py --headless --browser=chrome
94
94
```
95
95
96
96
#### Step 15. You can also verify that the example test runs on Firefox
97
97
98
98
``` bash
99
- nosetests examples/my_first_test.py --with-selenium -- headless --browser=firefox
99
+ nosetests examples/my_first_test.py --headless --browser=firefox
100
100
```
101
101
102
102
#### Step 16. Login to Jenkins
@@ -119,7 +119,7 @@ nosetests examples/my_first_test.py --with-selenium --headless --browser=firefox
119
119
* Under "Build", click the "Add build step" dropdown and then select "Execute shell".
120
120
* For the "Command", put:
121
121
``` bash
122
- nosetests examples/my_first_test.py --with-selenium -- headless --browser=chrome
122
+ nosetests examples/my_first_test.py --headless --browser=chrome
123
123
```
124
124
* Click "Save" when you're done.
125
125
@@ -184,7 +184,7 @@ sudo python setup.py install
184
184
* For the "Execute shell", use the following as your updated "Command":
185
185
186
186
``` bash
187
- nosetests examples/my_test_suite.py --with-selenium -- headless --browser=chrome --with-db_reporting --with-testing_base
187
+ nosetests examples/my_test_suite.py --headless --browser=chrome --with-db_reporting --with-testing_base
188
188
```
189
189
190
190
* Click "Save" when you're done.
0 commit comments