Skip to content

Commit 5a94120

Browse files
removed MO from state exclusions list (#69)
This change removes Missouri from the list of states that we excluded from our pipeline run and adjusts the test length in the test_exclusions python file
1 parent 99cfb34 commit 5a94120

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/cfa_config_generator/utils/epinow2/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"US",
7272
)
7373

74-
nssp_states_omit = ("AS", "FM", "MH", "NP", "PR", "PW", "VI", "MO", "GU")
74+
nssp_states_omit = ("AS", "FM", "MH", "NP", "PR", "PW", "VI", "GU")
7575
nssp_valid_states = tuple(set(all_states).difference(nssp_states_omit))
7676
all_diseases = ("COVID-19", "Influenza", "RSV")
7777
data_sources = ("nhsn", "nssp")

tests/test_exclusions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_exclusions():
4949
exclusions=None,
5050
)
5151
task_configs, _ = generate_task_configs(**validated_args)
52-
remaining_configs = 150
52+
remaining_configs = 153
5353
assert len(task_configs) == remaining_configs
5454

5555

@@ -76,7 +76,7 @@ def test_single_exclusion():
7676
exclusions=None,
7777
)
7878
task_configs, _ = generate_task_configs(**validated_args)
79-
remaining_configs = 152
79+
remaining_configs = 155
8080
assert len(task_configs) == remaining_configs
8181

8282

0 commit comments

Comments
 (0)