Skip to content

Commit 4483021

Browse files
authored
Merge pull request #494 from cmu-delphi/utils-ci
Enable delphi utils on CI
2 parents 1367e26 + 8f12844 commit 4483021

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/python-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ jobs:
1616
if: github.event.pull_request.draft == false
1717
strategy:
1818
matrix:
19-
#packages: [_delphi_utils_python, cdc_covidnet, claims_hosp, combo_cases_and_deaths, google_symptoms, jhu, nchs_mortality, quidel, quidel_covidtest, safegraph, safegraph_patterns, usafacts]
20-
packages: [cdc_covidnet, claims_hosp, combo_cases_and_deaths, google_symptoms, jhu, nchs_mortality, quidel, quidel_covidtest, safegraph, safegraph_patterns, usafacts]
19+
packages: [_delphi_utils_python, cdc_covidnet, claims_hosp, combo_cases_and_deaths, google_symptoms, jhu, nchs_mortality, quidel, quidel_covidtest, safegraph, safegraph_patterns, usafacts]
2120
defaults:
2221
run:
2322
working-directory: ${{ matrix.packages }}

_delphi_utils_python/delphi_utils/smooth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def savgol_coeffs(self, nl, nr, poly_fit_degree):
394394
coeffs[i] = (mat_inverse @ basis_vector)[0]
395395
return coeffs
396396

397-
def savgol_smoother(self, signal):
397+
def savgol_smoother(self, signal): # pylint: disable=inconsistent-return-statements
398398
"""Smooth signal with the savgol smoother.
399399
400400
Returns a convolution of the 1D signal with the Savitzky-Golay coefficients, respecting

0 commit comments

Comments
 (0)