Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Drupal
drupalizer
Commits
ba7fc7fa
Commit
ba7fc7fa
authored
Oct 31, 2016
by
20th (Victor Nikulshin)
Browse files
Sort tasks in __init__ by alphabet
parent
35149929
Changes
1
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
ba7fc7fa
...
...
@@ -27,6 +27,25 @@ def init():
execute
(
behat
.
init
,
host
=
'root@{}'
.
format
(
env
.
container_ip
))
@
task
def
install
():
"""
Run the full installation process.
"""
execute
(
drush
.
make
,
'install'
)
execute
(
drush
.
site_install
)
execute
(
behat
.
init
)
@
task
def
release
():
"""
Generate all artefacts related to a release process or a deployment process.
"""
execute
(
drush
.
archive_dump
)
execute
(
drush
.
gen_doc
)
@
task
def
test
(
tags
=
''
):
"""
...
...
@@ -43,16 +62,6 @@ def test(tags=''):
execute
(
behat
.
run
,
tags
=
'{}'
.
format
(
tags
))
@
task
def
install
():
"""
Run the full installation process.
"""
execute
(
drush
.
make
,
'install'
)
execute
(
drush
.
site_install
)
execute
(
behat
.
init
)
@
task
def
update
():
"""
...
...
@@ -61,12 +70,3 @@ def update():
execute
(
drush
.
make
,
'update'
)
execute
(
drush
.
updatedb
)
execute
(
behat
.
init
)
@
task
def
release
():
"""
Generate all artefacts related to a release process or a deployment process.
"""
execute
(
drush
.
archive_dump
)
execute
(
drush
.
gen_doc
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment