mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Added note about running flake8
This commit is contained in:
parent
16fbb47f02
commit
196f11098b
@ -65,6 +65,14 @@ x = 'name: {}; score: {}'.format(name, n)
|
|||||||
we use the `format()` version. The [official Python documentation says](https://docs.python.org/2/library/stdtypes.html#str.format), "This method of string formatting is the new standard in Python 3, and should be preferred to the % formatting described in String Formatting Operations in new code."
|
we use the `format()` version. The [official Python documentation says](https://docs.python.org/2/library/stdtypes.html#str.format), "This method of string formatting is the new standard in Python 3, and should be preferred to the % formatting described in String Formatting Operations in new code."
|
||||||
|
|
||||||
|
|
||||||
|
## Runnng the Flake8 Style Checker
|
||||||
|
|
||||||
|
We use [Flake8](http://flake8.pycqa.org/en/latest/index.html) to check our Python code style. Once you have it installed, you can run it using:
|
||||||
|
```text
|
||||||
|
flake8 --max-line-length 119 bigchaindb/
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Writing and Running (Python) Unit Tests
|
## Writing and Running (Python) Unit Tests
|
||||||
|
|
||||||
We write unit tests for our Python code using the [pytest](http://pytest.org/latest/) framework.
|
We write unit tests for our Python code using the [pytest](http://pytest.org/latest/) framework.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user