File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 40
40
with :
41
41
python-version : ${{ matrix.python-version }}
42
42
43
- - name : Install Deps
44
- if : steps.release.outputs.version == 0
45
- run : |
46
- pip install --upgrade setuptools pip wheel
47
- pip download --dest=/tmp/deps .[test]
48
- pip install -U --no-index --find-links=/tmp/deps /tmp/deps/*
49
-
50
43
- name : Test
51
44
if : steps.release.outputs.version == 0
52
45
run : |
53
- python setup.py build_ext --inplace
46
+ pip install -e .[test]
54
47
python setup.py test
Original file line number Diff line number Diff line change @@ -184,4 +184,9 @@ def build_extensions(self):
184
184
include_package_data = True ,
185
185
test_suite = 'tests.suite' ,
186
186
setup_requires = setup_requires ,
187
+ extras_require = {
188
+ 'test' : [
189
+ CYTHON_DEPENDENCY
190
+ ]
191
+ }
187
192
)
You can’t perform that action at this time.
0 commit comments