Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Changelog = "https://github.com/AllenNeuralDynamics/Aind.Behavior.VrForaging/rel

[project.optional-dependencies]

data = ["contraqctor<0.5.0"]
data = ["contraqctor<0.6.0"]

launcher = [
"aind-clabe[aind-services]>=0.7",
Expand Down
4 changes: 2 additions & 2 deletions src/aind_behavior_vr_foraging/data_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_render_latency(self, max_latency: t.Optional[float] = None):

def make_qc_runner(dataset: contract.Dataset) -> qc.Runner:
_runner = qc.Runner()
loading_errors = dataset.load_all(strict=False)
dataset.load_all(strict=False)
exclude: list[contract.DataStream] = []
rig: AindVrForagingRig = dataset["Behavior"]["InputSchemas"]["Rig"].data

Expand All @@ -221,7 +221,7 @@ def make_qc_runner(dataset: contract.Dataset) -> qc.Runner:
exclude.append(stream)

# Add the outcome of the dataset loading step to the automatic qc
_runner.add_suite(qc.contract.ContractTestSuite(loading_errors, exclude=exclude), group="Data contract")
_runner.add_suite(qc.contract.ContractTestSuite(dataset.collect_errors(), exclude=exclude), group="Data contract")

# Add Harp tests for ALL Harp devices in the dataset
for stream in (_r := dataset["Behavior"]):
Expand Down
10 changes: 3 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading