Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<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">
Expand Down
5 changes: 4 additions & 1 deletion webapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ module.exports = {
},
test: {
type: String,
enum: ['none', 'py.test', 'python setup.py test', 'make test'],
enum: [
'none', 'py.test', 'python setup.py test', 'make test',
'python manage.py test'
],
default: 'python setup.py test'
},
prepare: {
Expand Down