We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434aa9f commit 48a6d3dCopy full SHA for 48a6d3d
2 files changed
.github/workflows/tests.yml
@@ -40,15 +40,8 @@ jobs:
40
with:
41
python-version: ${{ matrix.python-version }}
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
- name: Test
51
if: steps.release.outputs.version == 0
52
run: |
53
- python setup.py build_ext --inplace
+ pip install -e .[test]
54
python setup.py test
setup.py
@@ -184,4 +184,9 @@ def build_extensions(self):
184
include_package_data=True,
185
test_suite='tests.suite',
186
setup_requires=setup_requires,
187
+ extras_require={
188
+ 'test': [
189
+ CYTHON_DEPENDENCY
190
+ ]
191
+ }
192
)
0 commit comments