Skip to content

Commit

Permalink
Merge branch 'release/0.3.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 29, 2024
2 parents 9995ff9 + e927455 commit c5ab86c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions edc_glucose/tests/consents.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from edc_consent.consent_definition import ConsentDefinition
from edc_consent.site_consents import site_consents
from edc_constants.constants import FEMALE, MALE
from edc_protocol import Protocol
from edc_protocol.research_protocol_config import ResearchProtocolConfig

consent_v1 = ConsentDefinition(
"edc_glucose.subjectconsent",
version="1",
start=Protocol().study_open_datetime,
end=Protocol().study_close_datetime,
start=ResearchProtocolConfig().study_open_datetime,
end=ResearchProtocolConfig().study_close_datetime,
age_min=18,
age_is_adult=18,
age_max=64,
Expand Down
3 changes: 1 addition & 2 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import logging
from pathlib import Path

from edc_constants.constants import IGNORE
from edc_test_utils import DefaultTestSettings, func_main

app_name = "edc_glucose"
Expand All @@ -15,7 +14,7 @@
APP_NAME=app_name,
SUBJECT_VISIT_MODEL="edc_visit_tracking.subjectvisit",
LIST_MODEL_APP_LABEL="edc_glucose",
EDC_NAVBAR_VERIFY_ON_LOAD=IGNORE,
SILENCED_SYSTEM_CHECKS=["sites.E101", "edc_navbar.E002", "edc_navbar.E003"],
EDC_AUTH_SKIP_SITE_AUTHS=True,
EDC_AUTH_SKIP_AUTH_UPDATER=True,
EXTRA_INSTALLED_APPS=[
Expand Down

0 comments on commit c5ab86c

Please sign in to comment.