-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.html
More file actions
29 lines (26 loc) · 1.34 KB
/
config.html
File metadata and controls
29 lines (26 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<label for="strider-python-prepare" class="bold-label">Prepare Command</label>
<input id="strider-python-prepare" type="text" ng-model="config.prepare" placeholder="pip install -r requirements.txt"/>
<p class="help-text">
Enter which command should be used to prepare your project. The default is
"pip install -r requirements.txt". For example, this could be "python setup.py
develop" for some projects.
</p>
<label for="strider-python-runtime" class="bold-label">Virtual environment python version</label>
<input id="strider-python-runtime" type="text" ng-model="config.runtime" placeholder="2"/>
<p class="help-text">
Enter the python version to be used for your project. (eg. 2.7, 3.5 etc.)
</p>
<label for="strider-python-test" class="bold-label">Test Command</label>
<select id="strider-python-test" ng-model="config.test">
<option value="python setup.py test">python setup.py test</option>
<option value="make test">make test</option>
<option value="py.test">py.test</option>
<option value="python manage.py test">python manage.py test</option>
<option value="none">No test command</option>
</select>
<p class="help-text">
Select which command should be used to test your
project. Alternatively, select "No test command" if you are going to test using
some other plugin.
</p>
<button class="btn btn-primary" ng-click="save()">Save</button>