Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.build
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos.recipe.build
Commits
e9738f89
Commit
e9738f89
authored
Oct 07, 2014
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Harden tests, make them compatible with new buildout.
parent
a5cf4f1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
README.rst
README.rst
+12
-6
No files found.
README.rst
View file @
e9738f89
...
...
@@ -92,6 +92,7 @@ Then let's run the buildout::
Let's take a look at the buildout parts directory now::
>>> ls(sample_buildout, 'parts')
d buildout
d git-clone
When updating, it will do a "git fetch; git reset @{upstream}"::
...
...
@@ -122,19 +123,21 @@ Then let's run the buildout::
>>> print system(buildout)
Uninstalling git-clone.
Running uninstall recipe.
Installing git-clone.
Cloning into '/sample-buildout/parts/git-clone'...
Let's take a look at the buildout parts directory now::
>>> ls(sample_buildout, 'parts')
d buildout
d git-clone
And let's see that current branch is "build"::
>>> import subprocess
>>> cd('parts', 'git-clone')
>>> subprocess.check_output(['git', 'branch'])
'* build\n'
>>>
print
subprocess.check_output(['git', 'branch'])
* build
When updating, it will do a "git fetch; git reset build"::
...
...
@@ -166,20 +169,22 @@ Then let's run the buildout::
>>> print system(buildout)
Uninstalling git-clone.
Running uninstall recipe.
Installing git-clone.
Cloning into '/sample-buildout/parts/git-clone'...
Let's take a look at the buildout parts directory now::
>>> ls(sample_buildout, 'parts')
d buildout
d git-clone
And let's see that current
branch is "gitclone
"::
And let's see that current
revision is "2566127
"::
>>> import subprocess
>>> cd(sample_buildout, 'parts', 'git-clone')
>>> subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD'])
'2566127\n'
>>>
print
subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD'])
2566127
When updating, it will do a "git fetch; git reset revision"::
...
...
@@ -187,7 +192,8 @@ When updating, it will do a "git fetch; git reset revision"::
>>> print system(buildout)
Updating git-clone.
Fetching origin
HEAD is now at ...
HEAD is now at 2566127 ...
Empty revision/branch
---------------------
...
...
Write
Preview
Markdown
is supported
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