This repository was archived by the owner on Nov 3, 2023. It is now read-only.
File tree 4 files changed +39
-2
lines changed
4 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 19
19
- name : Install tox
20
20
run : python -m pip install --upgrade pip tox
21
21
- name : Run Tests
22
- run : tox -e py,install,docs
22
+ run : make tests
Original file line number Diff line number Diff line change
1
+
2
+ tasks :
3
+ - init : pip install -r requirements.txt && pip install -e .
4
+
5
+ github :
6
+ prebuilds :
7
+ master : true
8
+ branches : true
9
+ pullRequests : true
10
+ pullRequestsFromForks : true
11
+ addCheck : true
12
+
13
+ vscode :
14
+ extensions :
15
+ - ms-python.python
Original file line number Diff line number Diff line change
1
+ all : format tests
2
+
3
+ format :
4
+ isort src/pydocstyle
5
+ black src/pydocstyle
6
+
7
+ tests :
8
+ tox -e py,install,docs
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ pydocstyle - docstring style checker
21
21
.. image :: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336
22
22
:target: https://pycqa.github.io/isort/
23
23
24
+ .. image :: https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod
25
+ :target: https://gitpod.io/#https://github.com/PyCQA/pydocstyle
26
+ :alt: Gitpod ready-to-code
27
+
24
28
**pydocstyle ** is a static analysis tool for checking compliance with Python
25
29
docstring conventions.
26
30
@@ -43,7 +47,7 @@ Install
43
47
44
48
45
49
Run
46
- ^^^^
50
+ ^^^
47
51
48
52
.. code ::
49
53
56
60
D201: No blank lines allowed before function docstring (found 1)
57
61
...
58
62
63
+ Develop
64
+ ^^^^^^^
65
+
66
+ You can use Gitpod to run pre-configured dev envrionment in the cloud right from your browser -
67
+
68
+ .. image :: https://gitpod.io/button/open-in-gitpod.svg
69
+ :target: https://gitpod.io/#https://github.com/PyCQA/pydocstyle
70
+ :alt: Open in Gitpod
71
+
72
+ Before submitting a PR make sure that you run `make all `.
59
73
60
74
Links
61
75
-----
You can’t perform that action at this time.
0 commit comments