Skip to content

Commit f2b96ed

Browse files
committed
Moved testing requirements to extras
1 parent 3b350cb commit f2b96ed

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,22 @@
2323
packages=setuptools.find_packages(),
2424
install_requires=[
2525
'six',
26-
'pytest==4.6.11',
2726
'hexdump==3.3',
28-
'pytest-cov==2.11.1',
27+
2928

3029
# pin deps for python 2, see #67
3130
'more_itertools==5.0.0',
3231
'zipp==1.0.0',
3332
'configparser==4.0.2',
3433
'pyparsing==2.4.7',
3534
],
35+
extras_require={
36+
# For running unit tests & coverage
37+
"test": [
38+
'pytest-cov==2.11.1',
39+
'pytest==4.6.11',
40+
]
41+
},
3642
scripts=['scripts/evtx_dump.py',
3743
'scripts/evtx_dump_chunk_slack.py',
3844
'scripts/evtx_eid_record_numbers.py',

0 commit comments

Comments
 (0)