More fixes after merging #156#159
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a new pytest marker nightly_slr to the test configuration in pyproject.toml. The marker is intended to categorize tests related to Streamline-based Linear Registration (SLR), similar to existing markers for other test categories like nightly_anisotropic, nightly_reco, and nightly_custom. The marker is already referenced in CI workflows to exclude these tests from regular test runs.
Changes:
- Added
nightly_slrmarker to the pytest markers list in pyproject.toml
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "nightly_reco80", | ||
| "nightly_custom", | ||
| "nightly_slr", | ||
| "nightly", |
There was a problem hiding this comment.
There is a duplicate "nightly" marker in the markers list. The marker appears on line 31 and again on line 38 (after the newly added "nightly_slr" marker). One of these duplicate entries should be removed.
| "nightly", |
This happens on the CI in the absence of an IPython installation. For example, when building and installing a minimal sdist.
| import pytest | ||
|
|
||
| from AFQ.viz.utils import Viz | ||
| try: |
|
This looks good to me! |
No description provided.