-
Notifications
You must be signed in to change notification settings - Fork 191
174 lines (150 loc) · 6.57 KB
/
all-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
name: Complete tests
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * 0" # Weekly on Sunday at noon UTC
pull_request:
types: [synchronize, opened, reopened]
branches:
- main
env:
KACHERY_CLOUD_CLIENT_ID: ${{ secrets.KACHERY_CLOUD_CLIENT_ID }}
KACHERY_CLOUD_PRIVATE_KEY: ${{ secrets.KACHERY_CLOUD_PRIVATE_KEY }}
concurrency: # Cancel previous workflows on the same pull request
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.12"] # Lower and higher versions we support
os: [macos-13, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip' # caching pip dependencies
- name: Get current hash (SHA) of the ephy_testing_data repo
id: repo_hash
run: echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
shell: bash
- name: Cache datasets
id: cache-datasets
uses: actions/cache/restore@v4
with:
path: ~/spikeinterface_datasets
key: ${{ runner.os }}-datasets-${{ steps.repo_hash.outputs.dataset_hash }}
restore-keys: ${{ runner.os }}-datasets
- name: Install packages
run: |
git config --global user.email "[email protected]"
git config --global user.name "CI Almighty"
pip install -e .[test,extractors,streaming_extractors,full]
pip install tabulate
shell: bash
- name: Installad datalad
run: |
pip install datalad-installer
if [ ${{ runner.os }} = 'Linux' ]; then
datalad-installer --sudo ok git-annex --method datalad/packages
elif [ ${{ runner.os }} = 'macOS' ]; then
datalad-installer --sudo ok git-annex --method brew
elif [ ${{ runner.os }} = 'Windows' ]; then
datalad-installer --sudo ok git-annex --method datalad/git-annex:release
fi
pip install datalad
git config --global filter.annex.process "git-annex filter-process" # recommended for efficiency
shell: bash
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Set environment variables based on changed files
run: |
declare -A changes
changes=(
["pyproject.toml"]="CORE_CHANGED"
["/core/"]="CORE_CHANGED"
["/extractors/neoextractors/neobaseextractor.py"]="CORE_CHANGED"
["/extractors/"]="EXTRACTORS_CHANGED"
["plexon2"]="PLEXON2_CHANGED"
["/preprocessing/"]="PREPROCESSING_CHANGED"
["/postprocessing/"]="POSTPROCESSING_CHANGED"
["/qualitymetrics/"]="QUALITYMETRICS_CHANGED"
["/sorters/"]="SORTERS_CHANGED"
["/sorters/external"]="SORTERS_EXTERNAL_CHANGED"
["/sorters/internal"]="SORTERS_INTERNAL_CHANGED"
["/comparison/"]="COMPARISON_CHANGED"
["/curation/"]="CURATION_CHANGED"
["/widgets/"]="WIDGETS_CHANGED"
["/exporters/"]="EXPORTERS_CHANGED"
["/sortingcomponents/"]="SORTINGCOMPONENTS_CHANGED"
["/generation/"]="GENERATION_CHANGED"
)
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
for pattern in "${!changes[@]}"; do
if [[ $file == *$pattern* ]]; then
echo "${changes[$pattern]}=true" >> $GITHUB_ENV
fi
done
done
- name: Set execute permissions on run_tests.sh
run: chmod +x .github/run_tests.sh
shell: bash
- name: Test core
run: pytest -m "core"
shell: bash
- name: Test extractors
env:
HDF5_PLUGIN_PATH: ${{ github.workspace }}/hdf5_plugin_path_maxwell
if: env.EXTRACTORS_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: pytest -m "extractors"
shell: bash
- name: Test preprocessing
if: env.PREPROCESSING_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh "preprocessing and not deepinterpolation" --no-virtual-env
shell: bash
- name: Test postprocessing
if: env.POSTPROCESSING_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh postprocessing --no-virtual-env
shell: bash
- name: Test quality metrics
if: env.QUALITYMETRICS_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh qualitymetrics --no-virtual-env
shell: bash
- name: Test comparison
if: env.COMPARISON_CHANGED == 'true' || env.GENERATION_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh comparison --no-virtual-env
shell: bash
- name: Test core sorters
if: env.SORTERS_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh sorters --no-virtual-env
shell: bash
- name: Test internal sorters
if: env.SORTERS_INTERNAL_CHANGED == 'true' || env.SORTINGCOMPONENTS_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh sorters_internal --no-virtual-env
shell: bash
- name: Test curation
if: env.CURATION_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh curation --no-virtual-env
shell: bash
- name: Test widgets
if: env.WIDGETS_CHANGED == 'true' || env.CORE_CHANGED == 'true' || env.QUALITYMETRICS_CHANGED == 'true' || env.PREPROCESSING_CHANGED == 'true'
run: ./.github/run_tests.sh widgets --no-virtual-env
shell: bash
- name: Test exporters
if: env.EXPORTERS_CHANGED == 'true' || env.CORE_CHANGED == 'true' || env.WIDGETS_CHANGED == 'true'
run: ./.github/run_tests.sh exporters --no-virtual-env
shell: bash
- name: Test sortingcomponents
if: env.SORTINGCOMPONENTS_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh sortingcomponents --no-virtual-env
shell: bash
- name: Test generation
if: env.GENERATION_CHANGED == 'true' || env.CORE_CHANGED == 'true'
run: ./.github/run_tests.sh generation --no-virtual-env
shell: bash