- extract, isolate and package it in a completely independent Python module, versioned and in a way that allows releases on PyPI.org - fixed error in placeholder for secondary school (data registry defaults) - added restriction in pytest version to install - expected number of new cases fix - data registry update (schema v2.1.1) - github update - deprecate ExpertApplication and CO2Application - changes to reflect schema update 2.0.2 - version update - Fixed error with f_inf (short-range) - new folder layout - Conditional probability data update - General fixes - Fitting results in L/S/person - CO2 fitting algorithm refinement
13 lines
333 B
Python
13 lines
333 B
Python
import pytest
|
|
|
|
from caimira.calculator.validators.virus import virus_validator
|
|
|
|
|
|
@pytest.fixture
|
|
def baseline_form_data():
|
|
return virus_validator.baseline_raw_form_data()
|
|
|
|
|
|
@pytest.fixture
|
|
def baseline_form(baseline_form_data, data_registry):
|
|
return virus_validator.VirusFormData.from_dict(baseline_form_data, data_registry)
|