Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit f2492ec

Browse files
authored
Merge pull request #94 from JaerongA/main
Add pytest & update tutorial notebook
2 parents 83c53c3 + 114fa49 commit f2492ec

File tree

6 files changed

+44
-44
lines changed

6 files changed

+44
-44
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
## [0.3.1] - 2023-04-12
7+
8+
+ Add - pytest for new `QCmetric` tables.
9+
+ Add - `graphviz` in `requirements.txt`.
10+
+ Update - visualization notebook.
11+
612
## [0.3.0] - 2023-03-09
713

814
+ Add - Demo notebooks and capabilities using GitHub Codespaces
@@ -81,7 +87,8 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
8187

8288
+ Add - Version
8389

84-
[0.2.7]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.2.7
90+
[0.3.1]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.1
91+
[0.3.0]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.0
8592
[0.2.6]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.2.6
8693
[0.2.5]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.2.5
8794
[0.2.4]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.2.4

StandardConfig.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

notebooks/10-data_visualization.ipynb

Lines changed: 31 additions & 18 deletions
Large diffs are not rendered by default.

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ element-lab>=0.2.0
88
element-session>=0.1.2
99
ipykernel>=6.0.1
1010
neuroconv>=0.2.0
11+
graphviz

tests/test_pipeline_generation.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ def test_generate_pipeline(pipeline):
2121
in ephys_report.UnitLevelReport.parents(),
2222
]
2323
)
24+
25+
# test the connection between quality metric tables
26+
assert ephys.QualityMetrics.full_table_name in ephys_report.QualityMetricSet.parents()

workflow_array_ephys/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Package metadata
33
Update the Docker image tag in `docker-compose.yaml` to match
44
"""
5-
__version__ = "0.3.0"
5+
__version__ = "0.3.1"

0 commit comments

Comments
 (0)