File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 16
16
- ' 3.9'
17
17
- ' 3.10'
18
18
- ' 3.11'
19
+ - ' 3.12'
19
20
name : Python ${{ matrix.python-version }}
20
21
steps :
21
22
- uses : actions/checkout@v3
@@ -27,11 +28,12 @@ jobs:
27
28
- name : Install dependencies
28
29
run : |
29
30
python -m pip install --upgrade pip
30
- pip install pytest-cov codecov
31
- python setup.py develop easy_install "catmux [test]"
31
+ pip install pytest-cov codecov coverage
32
+ pip install -e . [test]
32
33
- name : Test with pytest
33
34
run : |
34
- pytest --cov=catmux --cov-report=xml .
35
+ coverage run --source=catmux -m pytest && coverage report
36
+ coverage xml -o coverage.xml
35
37
- name : Run example
36
38
run : |
37
39
catmux_create_session -d catmux/resources/example_session.yaml
Original file line number Diff line number Diff line change 16
16
- ' 3.9'
17
17
- ' 3.10'
18
18
- ' 3.11'
19
+ - ' 3.12'
19
20
name : Python ${{ matrix.python-version }}
20
21
steps :
21
22
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools >= 61.0" ]
3
+ build-backend = " setuptools.build_meta"
You can’t perform that action at this time.
0 commit comments