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 30 31 32
|
## Setup ##
1. Install git-ubuntu (see README.md for directions)
2. Build package
$ python3 setup.py build
## Check ##
Verify the packaging and other static checks that need to pass for packaging:
$ python3 setup.py check
Verify installation requirements will be satisfied
$ pip3 check
## Running self test of tree without building snap.
A complete 'build and install' should be done (and will be done by c-i),
but for many changes it is acceptable to run the current code inside
an already-installed snap environment.
You can run the self test (`git-ubuntu.self-test`) using your current
working tree by executing:
./snap-wrappers/wrappers/git-ubuntu-self-test
That will enter into the currently-installed snap environment and
execute itself.
|