File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 71
71
72
72
- uses : actions/setup-python@v5
73
73
with :
74
- python-version : 3.9
74
+ python-version : 3.11
75
75
76
76
- name : Install dependencies and build
77
77
run : |
80
80
81
81
- name : Check Build
82
82
run : |
83
- cd ./dist
84
- pytest ../
83
+ pip install tox tox-gh-actions coverage
84
+ tox
Original file line number Diff line number Diff line change 33
33
python -m build
34
34
- name : Test with pytest
35
35
run : |
36
- cd ./dist
37
- pytest ../
36
+ pip install tox tox-gh-actions coverage
37
+ tox
38
38
- uses : actions/upload-artifact@v4
39
39
with :
40
40
name : EasyScience - Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 16
16
17
17
import matplotlib .pyplot as plt
18
18
import numpy as np
19
+
19
20
from easyscience .Objects .ObjectClasses import BaseObj
20
21
from easyscience .Objects .ObjectClasses import Parameter
21
22
You can’t perform that action at this time.
0 commit comments