Skip to content
Draft
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/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- reduce_maxthreads
schedule:
- cron: '0 0 * * *' # nightly

Expand Down Expand Up @@ -36,7 +37,7 @@ jobs:
- run: conda list
- run: pip install -e .
- run: conda list
- run: pytest -n 2
- run: pytest -n 2 tests/test_real_https.py

osx:
runs-on: "macos-latest"
Expand All @@ -61,4 +62,4 @@ jobs:
- run: conda list
- run: mamba install -c conda-forge git
- run: pip install -e .
- run: pytest -n 2
- run: pytest -n 2 tests/test_real_https.py
2 changes: 1 addition & 1 deletion activestorage/active.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def __init__(self,
ncvar: str = None,
axis: tuple = None,
interface_type: str = None,
max_threads: int = 100,
max_threads: int = 60,
storage_options: dict = None,
active_storage_url: str = None,
option_disable_chunk_cache: bool = False) -> None:
Expand Down
Loading