Skip to content

Commit b147676

Browse files
larsoneragramfort
authored andcommitted
MRG: Restore LSL tests (#6147)
* ENH: Restore LSL tests * This is probably a syntax error * Update azure-pipelines.yml * Update azure-pipelines.yml
1 parent bc5bd2d commit b147676

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ before_install:
6767
pip uninstall --yes mne;
6868
fi;
6969
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
70-
pip install --upgrade pyqt5>=5.10;
70+
pip install --upgrade pyqt5>=5.10 pylsl;
71+
else
72+
conda install -c tstenner pylsl;
7173
fi;
7274
fi
7375
# Don't source mne_setup_sh here because changing PATH etc. can't be done in a script

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
pip install --upgrade numpy scipy vtk
4646
pip install --upgrade -r requirements.txt
4747
pip install $env:PIP_DEPENDENCIES
48+
pip install pylsl
4849
condition: eq(variables['TEST_MODE'], 'pip')
4950
displayName: 'Install dependencies with pip'
5051
- powershell: |
@@ -56,6 +57,7 @@ jobs:
5657
powershell ci-helpers/appveyor/install-miniconda.ps1
5758
$env:PATH = $env:PYTHON + "\envs\test;" + $env:PYTHON + "\envs\test\Scripts;" + $env:PYTHON + ";" + $env:PYTHON + "\Scripts;" + $env:PATH
5859
pip uninstall -yq mne
60+
pip install pylsl
5961
Write-Host ("##vso[task.setvariable variable=PATH]" + $env:PATH)
6062
condition: eq(variables['TEST_MODE'], 'conda')
6163
displayName: 'Install dependencies with conda'

0 commit comments

Comments
 (0)