Skip to content
This repository was archived by the owner on Jul 21, 2021. It is now read-only.

Commit e73d037

Browse files
carlosalbertoyurishkuro
authored andcommitted
Add build/test/release instructions. (opentracing#28)
1 parent a09f3ff commit e73d037

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,28 @@
44

55
A python version of the "BasicTracer" reference implementation for OpenTracing.
66

7-
## Build, install and run tests
7+
## Development
88

9+
### Tests
10+
11+
```sh
12+
virtualenv env
13+
. ./env/bin/activate
14+
make bootstrap
15+
make test
916
```
10-
make bootstrap; make test
17+
18+
### Releases
19+
20+
Before new release, add a summary of changes since last version to CHANGELOG.rst
21+
22+
```sh
23+
pip install zest.releaser[recommended]
24+
prerelease
25+
release
26+
git push origin master --follow-tags
27+
python setup.py sdist upload -r pypi
28+
postrelease
29+
git push
1130
```
1231

0 commit comments

Comments
 (0)