Merge pull request 'Add yapf to Pipenv environment' (#6) from add-yapf into main
continuous-integration/drone/push Build is passing Details

Reviewed-on: #6
This commit is contained in:
weeman 2021-06-21 17:38:05 +02:00
commit ea7b6391c1
4 changed files with 17 additions and 8 deletions

View File

@ -14,6 +14,7 @@ pyyaml = "~=5.4.1"
[dev-packages] [dev-packages]
flake8 = "~=3.9.2" flake8 = "~=3.9.2"
yapf = "~=0.31.0"
[requires] [requires]
python_version = "3.8" python_version = "3.8"

View File

@ -43,6 +43,13 @@ python -m unittest discover ki
flake8 flake8
``` ```
### Formatierung
Um ein einheitliches Quellcode-Erlebnis zu haben, kann der Code mit yapf neu formatiert werden:
'''
yapf -i --recursive ki/
'''
### Testbenutzer ### Testbenutzer

View File

@ -1 +1 @@
from ki import models, commands, routes # noqa from ki import models, commands, routes # noqa

View File

@ -22,13 +22,14 @@ class TestSkillsEndpoint(unittest.TestCase):
self.assertEqual(response.status_code, 200) self.assertEqual(response.status_code, 200)
self.assertEqual( self.assertEqual(
{ {
"skills": [ "skills": [{
{"id": 1, "name": "PHP"}, "id": 1,
{"id": 3, "name": "Python"} "name": "PHP"
] }, {
}, "id": 3,
response.json "name": "Python"
) }]
}, response.json)
if __name__ == "main": if __name__ == "main":