-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into fix_skimage_version
# Conflicts: # src/porespy/metrics/_regionprops.py # test/unit/test_filters.py # test/unit/test_network_size_factor.py # test/unit/test_parallel_filters.py
- Loading branch information
Showing
135 changed files
with
593,229 additions
and
50,851 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Nightly | ||
|
||
on: | ||
schedule: | ||
# Run (on default branch only) at 05:00 (hr:mm) UTC -> 12am EST | ||
- cron: "0 5 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.10', '3.11', '3.12'] | ||
os: [ubuntu-latest, macos-latest, macos-13, windows-latest] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install uv for faster builds | ||
run: | | ||
curl -LsSf https://astral.sh/uv/install.sh | sh | ||
- name: Install PoreSpy (macOS) | ||
if : (matrix.os == 'macos-latest') || (matrix.os == 'macos-13') | ||
run: | | ||
python -m pip install --upgrade pip | ||
uv pip install --system -e .[test,extras-macos] | ||
- name: Install PoreSpy (Windows, Linux) | ||
if : (matrix.os != 'macos-latest') && (matrix.os != 'macos-13') | ||
run: | | ||
python -m pip install --upgrade pip | ||
uv pip install --system -e .[test,extras] | ||
- name: Run tests | ||
run: | | ||
pytest -v |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.