-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2955 from h-mayorquin/add_errors_to_import_time
Improve profile imports test
- Loading branch information
Showing
2 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,13 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
python-version: "3.11" | ||
- name: Install Spikeinterface with only core dependencies | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI Almighty" | ||
python -m pip install -U pip # Official recommended way | ||
pip install -e . # This should install core only | ||
pip install . # This should install core only | ||
- name: Profile Imports | ||
run: | | ||
echo "## OS: ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY | ||
|
@@ -38,8 +38,7 @@ jobs: | |
shell: bash # Necessary for pipeline to work on windows | ||
- name: Install in full mode | ||
run: | | ||
python -m pip install -U pip # Official recommended way | ||
pip install -e .[full] | ||
pip install .[full] | ||
- name: Profile Imports with full | ||
run: | | ||
# Add a header to separate the two profiles | ||
|