24
24
run : python -c "import sys; print(sys.version)"
25
25
- name : Install dependencies
26
26
run : |
27
- python setup.py install
27
+ pip install . install
28
28
pip install -r requirements-test.txt
29
29
- name : Run tests
30
30
run : pytest
46
46
run : python -c "import sys; print(sys.version)"
47
47
- name : Install dependencies
48
48
run : |
49
- python setup.py install
49
+ pip install . install
50
50
pip install -r requirements-test.txt
51
51
- name : Run tests
52
52
run : pytest
72
72
run : python -c "import sys; print(sys.version)"
73
73
- name : Install dependencies
74
74
run : |
75
- python setup.py install
75
+ pip install .
76
76
pip install -r requirements-test.txt
77
77
- name : Run tests
78
78
run : pytest
98
98
run : python -c "import sys; print(sys.version)"
99
99
- name : Install dependencies
100
100
run : |
101
- python setup.py install
101
+ pip install .
102
102
pip install -r requirements-test.txt
103
103
- name : Run tests
104
104
run : pytest
@@ -114,7 +114,7 @@ jobs:
114
114
run : python -c "import sys; print(sys.version)"
115
115
- name : Install dependencies
116
116
run : |
117
- python setup.py install
117
+ pip install .
118
118
pip install -r requirements-test.txt
119
119
pip install pytest coveralls
120
120
- name : Create coverage
@@ -134,7 +134,7 @@ jobs:
134
134
python-version : " 3.10"
135
135
- name : Install dependencies
136
136
run : |
137
- python setup.py install
137
+ pip install .
138
138
pip install -r requirements-test.txt
139
139
pip install pytest pytest-cov
140
140
- name : Create coverage
0 commit comments