Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/create-condalock-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
auto-update-conda: true
activate-environment: activestorage-fromlock
python-version: "3.14"
miniforge-version: "latest"
# miniforge-version: "latest"
miniforge-version: 26.1.0-0 # need to use mamba<2.6.0 - see conda/conda-lock#906
use-mamba: true
- name: Show conda config
run: |
Expand Down Expand Up @@ -60,7 +61,7 @@ jobs:
- name: Install with pip
run: pip install -e .
- name: Run tests
run: pytest
run: pytest -m "not slow" --ignore=tests/test_real_https.py --ignore=tests/test_real_s3.py
# Automated PR
# see https://github.com/marketplace/actions/create-pull-request
- name: Create Automated PR if conda lock file has changed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-from-condalock-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
- run: which python
- run: pip --version
- run: pip install -e .
- run: pytest
- run: pytest -m "not slow" --ignore=tests/test_real_https.py --ignore=tests/test_real_s3.py
Loading
Loading