diff --git a/web/support/kb/juju/making-changes-to-charm.rst b/web/support/kb/juju/making-changes-to-charm.rst index 5d0f6f9a8195206f5c0d2023a0fd0a97fe82ce20..b6aebf4165793708e716cb3ac51c22f53f291ec1 100644 --- a/web/support/kb/juju/making-changes-to-charm.rst +++ b/web/support/kb/juju/making-changes-to-charm.rst @@ -60,9 +60,21 @@ The main steps needed to start modifying a charm are: - let `git-review` do some initial magic: `git review -s` - `git remote update` - `git checkout master` -- `git pull --ff-only origin master` +- `git pull - - ff-only origin master` - `git checkout -b bug/<bugID>` where `bugID` is the number of the bug you opened earlier in Launchpad + +Prepare testing area +.................... + +To execute the tests (based on tox) we still need to download the packages pip and tox:: + + - sudo apt-get install python-pip + - pip install tox + + + + At each development cycle .........................