File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3030 - name : Install lxml
3131 run : pip install lxml
3232 - name : Install python-evtx
33- run : pip install -e .
33+ run : pip install -e .[test]
3434 - name : Run tests
3535 run : pytest tests/
3636
Original file line number Diff line number Diff line change 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' ,
2927
3028 # pin deps for python 2, see #67
3129 'more_itertools==5.0.0' ,
3230 'zipp==1.0.0' ,
3331 'configparser==4.0.2' ,
3432 'pyparsing==2.4.7' ,
3533 ],
34+ extras_require = {
35+ # For running unit tests & coverage
36+ "test" : [
37+ 'pytest-cov==2.11.1' ,
38+ 'pytest==4.6.11' ,
39+ 'lxml==4.6.3' ,
40+ ]
41+ },
3642 scripts = ['scripts/evtx_dump.py' ,
3743 'scripts/evtx_dump_chunk_slack.py' ,
3844 'scripts/evtx_eid_record_numbers.py' ,
You can’t perform that action at this time.
0 commit comments