generated from pypa/sampleproject
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 1.05 KB
/
test.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
# this file is *not* meant to cover or endorse the use of GitHub Actions, but rather to
# help test this project
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python: ['3.10']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install pysap
run: |
python -m pip install --upgrade pip wheel
python -m pip install git+https://github.com/CEA-COSMIC/ModOpt.git@develop
cd ..
git clone -b develop https://github.com/CEA-COSMIC/pysap.git
cd pysap
python -m pip install pyqt5
python setup.py install --nosparse2d
cd ../simfmri
- name: Install test dependencies
run: |
python -m pip install git+https://github.com/paquiteau/pysap-fmri
python -m pip install .[test] matplotlib
- name: Test
run: pytest