Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing unit tests #172

Merged
merged 5 commits into from
Feb 5, 2024
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 .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
pyvista: false
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
python -m pip install --upgrade pip setuptools wheel
pip install --upgrade --upgrade-strategy eager .[test]
- if: matrix.mne-version == 'mne-stable'
run: pip install --upgrade mne
Expand Down
1 change: 1 addition & 0 deletions benchmarks/bench_var.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
against that of statsmodels to prevent us from creating
a dependency on statsmodels.
"""

import numpy as np
from memory_profiler import profile
from statsmodels.tsa.vector_ar.var_model import VAR
Expand Down
3 changes: 2 additions & 1 deletion benchmarks/single_epoch_conn.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
Generate Test Dataset for Spectral Connectivity Over Time With Frites
=====================================================================

As of v0.3, mne-connectivity ported over an implementation for
As of v0.3, mne-connectivity ported over an implementation for
spectral connectivity over epochs. This file will generate the test
dataset used with Frites v0.4.1.
"""

import mne
import numpy as np
from frites.conn import conn_spec
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ test = [
'pandas',
'pymatreader',
'PyQt6',
'pytest',
'pytest-cov',
'pytest<8.0.0',
'statsmodels',
]

Expand Down
Loading