Skip to content

Commit 8afd77e

Browse files
committed
add to makefile and setup.pys
1 parent f6caa7f commit 8afd77e

File tree

16 files changed

+19
-0
lines changed

16 files changed

+19
-0
lines changed

.github/workflows/python-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
if: ${{ matrix.packages != 'claims_hosp' && matrix.packages != 'quidel'}}
3838
run: |
3939
make lint
40+
- name: Pydocstyle
41+
if: ${{ matrix.packages != '_delphi_utils_python' && matrix.packages != 'google_symptoms' && matrix.packages != 'jhu' && matrix.packages != 'nchs_mortality' && matrix.packages != 'quidel' && matrix.packages != 'quidel_covidtest'}}
42+
run: |
43+
pydocstyle delphi_*
4044
- name: Test
4145
run: |
4246
make test

_delphi_utils_python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"moto",
99
"numpy",
1010
"pandas>=1.1.0",
11+
"pydocstyle",
1112
"pylint",
1213
"pytest",
1314
"pytest-cov",

_template_python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

cdc_covidnet/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

changehc/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"numpy",
66
"pandas",
77
"cvxpy",
8+
"pydocstyle",
89
"pytest",
910
"pytest-cov",
1011
"pylint",

claims_hosp/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"numpy",
66
"pandas",
77
"cvxpy",
8+
"pydocstyle",
89
"pytest",
910
"pytest-cov",
1011
"pylint",

combo_cases_and_deaths/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
required = [
55
"pandas",
6+
"pydocstyle",
67
"pytest",
78
"pytest-cov",
89
"pylint",

google_health/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"numpy",
66
"pandas",
77
"google-api-python-client",
8+
"pydocstyle",
89
"pytest",
910
"pytest-cov",
1011
"pylint",

google_symptoms/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

jhu/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

nchs_mortality/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

quidel/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

quidel_covidtest/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

safegraph/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"covidcast",
66
"numpy",
7+
"pydocstyle",
78
"pandas",
89
"pytest",
910
"pytest-cov",

safegraph_patterns/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

usafacts/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
required = [
55
"numpy",
66
"pandas",
7+
"pydocstyle",
78
"pytest",
89
"pytest-cov",
910
"pylint",

0 commit comments

Comments
 (0)