File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ all = [
105105 " modeci-mdf[all_except_psyneulink]" ,
106106 " modeci-mdf[psyneulink]" ,
107107 " modeci-mdf[neuroml_simulators]" ,
108+ " modeci-mdf[test]" ,
108109]
109110
110111# Development dependency groups (PEP 735)
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -ex
33
4- pip install .[all] --group " dev"
4+ # # This is overkill, but it seems to lead to less space being used on install, which was
5+ # # causing issues on GHA CI.
6+ df -h
7+
8+ pip install . --cache-dir=/home/runner/tmp --prefer-binary
9+ df -h
10+ pip cache info
11+ pip cache purge
12+ df -h
13+
14+ pip install .[optional] --cache-dir=/home/runner/tmp --prefer-binary
15+ df -h
16+ pip cache purge
17+ df -h
18+
19+ pip install .[all] --cache-dir=/home/runner/tmp --prefer-binary
20+ df -h
21+
522
623# Note this:
724# 1) runs examples to regenerate yaml/json...
You can’t perform that action at this time.
0 commit comments