-
Notifications
You must be signed in to change notification settings - Fork 26
35 lines (30 loc) · 1.04 KB
/
ci-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
# This workflow will install Python dependencies and run tests with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test
on: [push, pull_request]
jobs:
test:
name: ${{ matrix.os}} / py${{ matrix.python_version }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [Ubuntu]
python_version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python ${{ matrix.python_version }}
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install (testing) requirements
run: |
python -m pip install --upgrade pip setuptools
pip install pytest
- name: Install psignifit to be tested
run: |
pip install .
- name: Run tests for ${{ matrix.python_version }} through nox
run: |
pytest -vv