File tree 4 files changed +27
-0
lines changed
4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 4
4
- " 3.6"
5
5
install :
6
6
- pip install coveralls
7
+ - pip install -r requirements.txt
7
8
script :
8
9
coverage run --source=bitstruct setup.py test
9
10
after_success :
Original file line number Diff line number Diff line change 1
1
test :
2
2
python2 setup.py test
3
3
python3 setup.py test
4
+ codespell -d $$(git ls-files )
4
5
5
6
release-to-pypi :
6
7
python setup.py sdist
Original file line number Diff line number Diff line change @@ -115,6 +115,30 @@ values:
115
115
>> > unpack(' u1u3u4s16' , byteswap(' 12' , packed))
116
116
(1 , 2 , 3 , 256 )
117
117
118
+ Contributing
119
+ ============
120
+
121
+ #. Install prerequisites.
122
+
123
+ .. code-block :: text
124
+
125
+ pip install -r requirements.txt
126
+
127
+ #. Fork the repository.
128
+
129
+ #. Implement the new feature or bug fix.
130
+
131
+ #. Implement test case(s) to ensure that future changes do not break
132
+ legacy.
133
+
134
+ #. Run the tests.
135
+
136
+ .. code-block :: text
137
+
138
+ make test
139
+
140
+ #. Create a pull request.
141
+
118
142
.. |buildstatus | image :: https://travis-ci.org/eerimoq/bitstruct.svg
119
143
.. _buildstatus : https://travis-ci.org/eerimoq/bitstruct
120
144
Original file line number Diff line number Diff line change
1
+ codespell
You can’t perform that action at this time.
0 commit comments