We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaa9f0b commit e03cefaCopy full SHA for e03cefa
.github/workflows/ci.yml
@@ -33,8 +33,8 @@ jobs:
33
- name: Install dependencies
34
run: |
35
python -m pip install --upgrade pip
36
- python -m pip install flake8 pytest==${{ matrix.pytest-version }} xmlschema==1.0.13
37
- python -m pip install -e .
+ python -m pip install flake8 pytest==${{ matrix.pytest-version }}
+ python -m pip install -e .[dev]
38
- name: Test with pytest
39
40
pytest
setup.py
@@ -35,6 +35,10 @@ def getversion():
install_requires=['pytest>=4.6.0', 'attrs'],
extras_require={
':python_version=="2.7"': ['enum34>=1.1.6'],
+ 'dev': [
+ 'xmlschema==1.0.13',
+ 'pytest',
41
+ ],
42
},
43
classifiers=[
44
'Development Status :: 4 - Beta',
0 commit comments